Blue dots of death

by

in ,

Have you ever made a site only to be plagued by those blue dots in FireFox when you click an image link? Well I did some research and found this solution.

Simply add the following code to your stylesheet and the dots will disappear automagically.

a:active
{
outline: none;
}

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

Recent Posts