So I have a text input, im using html5, on chrome, and I want to change the look of a text input, I’ve removed the outline on focus (orange on chrome), I set the background to a light color #f1f1f1 but now there is like a thicker border on the top and left sides, like it’s meant to look pushed in, when there is no change in background color this doesn’t happen. How do I remove it? Sorry I can’t provide a picture, on a mobile device.
It happens on chrome, ie, and Firefox, can’t test any others.
border-style:solid;will override theinsetstyle. Which is what you asked.border:nonewill remove the border all together.border-width:1pxwill set it up to be kind of like before the background change.border:1px solid #ccccccis more specific and applies all three, width, style and color.Example: https://jsbin.com/quleh/2/edit?html,output