CSS/HTML <a> tag help?

On a home page I'm designing (still on my hard drive), whenever I click on navigation links, then click 'back' button, a dotted border appears around the most recently visited link.

I tried in CSS to set 'a:visited' border to none, but then realized it had something to do with focus. Any idea how to get rid of it?
 
This would remove it for all items that receive focus.

/* remember to define focus styles! */
:focus {
***outline: 0;
}

Of course, if you want it on, you'll have to turn it on for the given element.


And if you just want to remove the border from the anchor tag only, try this:
a:focus {
***outline: 0;
}
 
Back
Top