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
You could use CSS to disable that! This is the code I use for disabling the blue border:
*:focus { outline: none; }
This is a working example