How to remove the “Dots” around links?
Posted by Declan Magee | Posted in Web Dev Quick Tips | Posted on 24-06-2010
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;
}
