Ravikant Upadhyay
Ravikant Upadhyay

Reputation: 405

How to remove dotted border from submit button and from hyperlink in IE

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-
enter image description here

Upvotes: 1

Views: 178

Answers (1)

GreyRoofPigeon
GreyRoofPigeon

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

Related Questions