How to remove dotted border from links in Firefox?
Another straight to the point solution


If you also have problem with something like this, try this simple CSS rules:
a:active,a:focus
{
outline: none;
-moz-outline-style: none;
}
and you're done!
Comments