It can be disabled by setting the style for the element(s) involved like so:
Code:
a {
outline-style: none;
}
But it really is less obtrusive than you may imagine. The reason for keeping it is accessibility. If a user has no mouse or other pointing device, or cannot for some reason use their mouse or pointing device, they will only be able to activate the links on a page by pressing the tab key which will move the outline from link to link. When the outline is around the link they want, they can then hit the enter key. With no outline, they have no visual cue as to which link would be activated by hitting enter.
If you don't like the color of the outline, you may use the outline-color style property to change that. But it should still at least legibly contrast to the background it will be displayed upon.
Incidentally, IE also displays this outline, but only if you start using tab key on the document.
Bookmarks