I have this really simple form: http://jsfiddle.net/TKb6M/91/. Sometimes, when I zoom in or out using Chrome, the input borders disappear. For example, when I zoom to 90% I
I had the same problem with a bordered div wrapping borderless input , and all the great answers here does not helped me.
div
input
Finally, adding:
overflow: auto;
to the div element (the one with the problematic border) did the trick.