CSS: Get rid of dashed border on focused elements

Disclaimer: This is meant to be use ONLY ff you do NOT want your user to be able to Tab through the links on your site, or if you have already coded the :focus subclasses or onfocus script events for all of the elements in your site that you wish your user to be able to visually tab through.

Do you want to get rid of the dashed border that appears when you click on links, flash controls, etc?

Try this!

 

* 
{
    -moz-outline-style: none;     
    outline-style: none;
    outline-width: 0px;
    outline-color: -moz-use-text-color;
}

 

more later - joel

9 Comments

Comments have been disabled for this content.