Forum Moderators: not2easy
I would like to go ahead and remove the dashed 'outline' that appears inside a SELECT element when it has focus. As I am already modifying the border on focus, it seems a little much to have both at the same time. Additionally, I understand the accessibility issues, which is why I change the outline on focus.
element {outline: none;}
In the past, I've been able to add/remove outlines to (A) elements when they are clicked, and I can add or remove them to the SELECT item as well (they show up on the outside) but the internal ones seem to be out of my grasp. I figured they must be applied by default to the internal OPTION's, but disabling those doesn't seem to have any effect.
Any pointers?