Tuesday 14 August 2012

HOW TO REMOVE DOTTED BORDER FROM LINKS IN FIREFOX

Now a days many reader ask me to write about how to fix or how to remove dotted border from links in Firefox.And a  reader email me and briefly describe about his problem,that when he use Firefox browser his post titles and various links are always displayed  with a dotted border when he click on the links.And ask me to help or solve their problem.Now here I teach you how to solve this problem.And now i write the CSS  code and put this CSS code to your
<head> and </head> tag.


a:active
{
outline: none;
}

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



and by using this code you can solve your problem

No comments:

Post a Comment