When an HTML element is \'focused\' (currently selected/tabbed into), many browsers (at least Safari and Chrome) will put a blue border around it.
For the layout I a
The only solutiion that worked with me
The border is actually a shadow. So to hide it I had to do this:
input[type="text"]:focus{ box-shadow: 0 0 0 rgb(255, 255, 255); } input[type="checkbox"]:focus{ box-shadow: 0 0 0 rgb(255, 255, 255); }