Removing the Dotted Hyperlink Borders
I love Firefox, it is my favoured browser but there is one little thing that really frustrates me, especially from a designer point of view. You may, or may not have noticed that the browser adds a dotted border around hyperlinks that only become visible upon activating the link. For many this is probably not a problem as its not exactly causing any problems to anyone, but I don’t like it.

To remove this border, all you need to do is add the two lines of code shown below to your sites Stylesheet and wahlaaa, gone! Many of the big sites haven’t even bothered to do this, a few to mention are Microsoft, Twitter and YouTube.
Anyways, here is the code…
a:active { outline: none; }
a:focus { -moz-outline-style: none; }
I would be greatful if you could take a second to help promote my blog and share this link with any of your favoured networking sites using the link below…
Hi Stu,
I try your code to remove dotted hyperlink border, but it doesn´t work. I put it in HEAD of my HTML page, is it correct?
Thank´s