Active hyperlink texts are highlighted with dotted border. When using effects on such hyperlinks (fadeIn/fadeOut) it produces strange effects. How do I disable/remove the dotted border?
|
Try this CSS:
Note that this has to be after any NOTE The above does not work in IE 9. Removing a:selected causes it to work in IE9. |
|||||||||||||||||
|
|
Typical and safe way to do it is this (in non-IE and IE6-7):
Since
If you're going to remove default focus outline, you must define your own distinct style for |
||||
|
|
|
||||
|
|
Be careful. The dotted-border is a valuable part of keyboard-browsing. It highlights which link will be clicked.
Author Nathan Smith gives a more thorough discussion of this, and various related issues on his blog. |
|||||
|
|
Try with this CSS: For Mozilla:
For IE8:
|
||||
|
|
|
The a There is a JS way to get rid of the border without breaking anything, as well as JS code to get rid of the border in IE6 and IE7. I described the method in my tutorial. |
||||
|
you can also use outline:0 on object and embed. some basic zeroing out css would look like this:
|
|||
|
|
|
Solution in JavaScript to remove the active border on the links on all the browsers: add the event onfocus="this.blur();" on your link
NOTE: this will work in all browsers. |
|||
|
|
Taken from here: http://www.cssjunction.com/css/remove-dotted-border-in-ie7/ |
||||
|
|
