Firefox has the bad habit to add a gray border around the links when clicked as seen in the following image…

We can easily remove it applying a specific css property…
To remove it completely, we only need to add the css property outline with the value none to the links.
Example of the css rule:
a{
outline:none;
}

















{ 1 trackback }
{ 4 comments… read them below or add one }
Ha! Sweet! Thanks, good work. I wish I knew this a long time ago…
Thanks for tips
Great tip! Thanks!
Thanks so much! This saved me a lot of hassle and time.