a few words about web development

How to remove dotted border from links in Firefox?

Another straight to the point solution
I once came across a weird dotted border around my menu items which appeared in Firefox when item was clicked. Here's how it looked:
Of course it wasn't "border" in terms of CSS. But after checking all CSS rules I found this was an "outline".
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