How to remove the “Dots” around links?

Posted by Declan Magee | Posted in Web Dev Quick Tips | Posted on 14-12-2009

0

In Firefox, when you click a link, especially if you have text-indent on an image, you see dots around the links.

To get rid of this, simply add the following to your CSS:

a:focus
{
  -moz-outline: none;
}