Remove Ugly Link Dotted Lines w/ CSS
If you’ve ever browsed the web, then you know what I’m talking about… these things:

Freaking irritating as hell, and for the longest time I’ve been fixing it with this:
<a href="page.asp" onClick="this.blur();">Word</a>
Well, guess what. There’s a waaaaay easier way, and I feel stoopid for not knowing this. Just do this:
a{outline:nothing}
yep, that’s it! Amazing huh?
May 3rd, 2009 at 7:30 am
tested it.
a {outline:none}
in ff3