Does anyone know where I would find the CSS to remove this blue box around the down arrow?
Does anyone know where I would find the CSS to remove this blue box around the down arrow?
the simplest method I use (almost always in my css-reset files for sites) is
*:focus { outline: none; }
This SHOULD remove that outline on focus for all elements, but remember, some people rely on those outlines for accessibility. so i usually add replacement styles of some appropriate type to still highlight the focused items
the simplest method I use (almost always in my css-reset files for sites) is
*:focus { outline: none; }
This SHOULD remove that outline on focus for all elements, but remember, some people rely on those outlines for accessibility. so i usually add replacement styles of some appropriate type to still highlight the focused items