Sep 17, 2009
Remove the dotted border from links in Firefox..?
Categories: CSS, Print and Press | Written By: hoboballan
Don’t know about any of you out there, but i hate these stupid “dotted borders” that appears when you click a link in firefox. And i hope if like me you wouls love to ba able to remove the border then i have a solution for you!
Just chuck this bit of code into your css style sheet.
a:active
{
outline: none;
}a:focus
{
-moz-outline-style: none;
}


