Remove Ugly Link Dotted Lines w/ CSS

If you’ve ever browsed the web, then you know what I’m talking about… these things:

Picture 1.jpg

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? ;)

Discussion Area - Leave a Comment