Lately I have noticed several sites that display those unsightly dotted outlines on high-profile link elements. Typically, these link outlines plague various header elements such as banner images, navigational links, and other key features. This behavior frequently haunts highly graphical site designs and is often associated with various image replacement methods that position the original anchor text offscreen, generally far beyond the left edge of the browser window. When visible, such presentations display a ghastly, four-sided dotted border that wraps the linked element and then continues to stretch to the left-hand side of the browser window. Here are a few examples of live websites demonstrating this distracting behavior 1 (btw, no offense meant to any of these sites — they are all great — they just happen to provide good examples!):
![[ Thumbnail: Link Outline Example 02 ]](http://perishablepress.com/wp/wp-content/images/2008/link-outlines/outline-example_02t.gif)
GimmeSome Tune (at the Apple Store)
![[ Thumbnail: Link Outline Example 03 ]](http://perishablepress.com/wp/wp-content/images/2008/link-outlines/outline-example_03t.gif)
WordPress Login Screen (pre-2.5)
![[ Thumbnail: Link Outline Example 06 ]](http://perishablepress.com/wp/wp-content/images/2008/link-outlines/outline-example_06t.gif)
Perishable Press (Jupiter Theme)
A Plain and Simple Problem
The dotted outline/border issue demonstrated in each of these examples is an artifact of the browser’s (Firefox, in this case) default style for linked elements upon gaining focus. To see this effect, disable the stylesheet of any web page and tab through the links. As you navigate through the document, each focused link will appear surrounded on all four sides with a dotted border, according to the browser’s default styles.
With CSS applied, the outline border of indented, block-level links will surround both the linked element and the entire area between the block element and the browser window. Given that this behavior generally accompanies highly specific, rigorously designed header layouts, I am surprised that more designers don’t notice the issue (or simply don’t bother to fix it), especially given the ease of the solution..
A Quick and Easy Solution
Fortunately, the solution to this unwanted behavior resides in a simple bit of CSS. Depending on your design, there are different ways to approach the removal of unwanted outlines. If you are into CSS reset styles, then you may want to begin your design by neutralizing all focus outlines entirely:
* :focus { outline: 0; }
If you decide to reset all focus outlines in this way, remember to build them back up for usability purposes and according to your needs. Some sort of distinct, clear focus style is especially important for users that depend on tabbed browsing to navigate web documents.
If, on the other hand, you prefer to remove the focus border only for a single (problematic) element, replace the wildcard operator in the CSS rule above with something more specific. For example, if your markup looks like this:
<div id="header">
<a href="http://domain.tld/" title="The swellest banner image of them all">
<img src="http://domain.tld/path/image.png" alt="[ Something Swell ]" />
</a>
</div>
..and you wanted to remove an unsightly focus border from the linked image, you could target that specific element and do the job like so:
div#header a:focus, div#header a:active { outline: 0; }
..or simply:
div#header a { outline: none; }
If you are also concerned with older versions of Firefox and Mozilla, you could nuke ‘em all with this outline-destroying death-blow:
div#header a:focus, div#header a:active {
outline: 0 none;
-moz-outline: 0 none;
}
There are, of course, many ways to go about targeting specific elements and removing link outlines using CSS, however the point here is that it is a very simple thing to prevent those amateur-looking focus borders from stretching all the way across the screen, especially when the link itself constitutes some smaller, well-defined area.
CUL8R
Anyway, that’s a wrap for this fine CSS tutorial. Hopefully this information is helpful for those wanting to sharpen their site for the more critical visitors among us. As always, thank you for your generous attention!
Resources
- 1 Check out a simplified live example
![[ Thumbnail: Link Outline Example 01 ]](http://perishablepress.com/wp/wp-content/images/2008/link-outlines/outline-example_01t.gif)
![[ Thumbnail: Link Outline Example 04 ]](http://perishablepress.com/wp/wp-content/images/2008/link-outlines/outline-example_04t.gif)
![[ Thumbnail: Link Outline Example 05 ]](http://perishablepress.com/wp/wp-content/images/2008/link-outlines/outline-example_05t.gif)
52 Responses
Bez – June 30, 2008
Thanks for the quick replay Perishable, I should have known that
ie6 is useless :(
Thanks for the help anyways,
One day… one day I will tame
this rebel browser!!!
Perishable – June 30, 2008
I feel your pain, Bez — we all feel your pain! ;)
ZeSev22 – July 5, 2008
THANKS A BUNCH!!!!
ZeSev22 – July 5, 2008
Sweeeet!
I have been looking all over the web for the fix to this VERY annoying outline and just as I was ready to give up, I found your site.
Thanks dude!
Perishable – July 6, 2008
My pleasure, ZeSev22 — happy to help! :)
The Iceman – July 8, 2008
Great solution. I use a little ‘stretcher’ on our website to expand text and collapse text. I was very happy to find this to eliminate the outlines especially using firefox.
Thanks again… Appreciate the easy method of getting rid of that stuff!
Perishable – July 9, 2008
Excellent, Iceman — glad to be of service! :)
Branden – July 19, 2008
This saved me! Thanks for this. I had a hard time finding out what the heck those little lines were called in the first place. Thanks again for the simple solution to removing these for my sifr fonts!
Perishable – July 20, 2008
My pleasure, Branden — thanks for the feedback!
dsf – August 18, 2008
thanks for this tip, been searching for something like this
* :focus { outline: 0; }for a while now. great trick, nothing to say, just one more time thanks.
dsf – August 18, 2008
great css tip, thanks.
however using
-moz-outline: 0 none;will break any w3c validations, i’m pointing this out just as a warning
fragrant.monkey – August 30, 2008
unfortunately the only method i’ve ever found that works in ie is by adding the following to every link in the markup… (i know, for shame…)
onfocus="if(this.blur)this.blur()"eg.
<a href="info.html" rel="nofollow">