Reputation: 405
I want to remove dotted border from submit button and hyperlink that apears after i click on submit button or on hyperlink. I have tried everything what described on google and on stackoverflow but not working any of them.
Tried: how to remove dotted border around the link in IE7
This the hell has to be removed-
Upvotes: 1
Views: 178
Reputation: 18123
To remove it from all elements use this in your stylesheet
* { outline: none; }
Note that it's not user friendly. Some like to use the tab button to go from one link to the other, with the above code, you can't see which link is selected.
Upvotes: 1