Quote Originally Posted by esoin View Post
I wanted to share something with you guys/girls.

Regarding the way firefox handles links...

...did it ever annoy you how firefox leaves dotted lines, which wraps around the linked tabs? There is a fix for this.

Here is a CSS example:

a:active
{
outline: none;
}


Reference Link: Removing Dotted Links

-esoin
It seems that for it to work for every aspect of a link, ie before, during and after clicking, I had to add outline: none; to a:link, a:hover, and a:visited. Now there is no dotted box around any link in FF.

Thanks for the tip!