De-Dotting Links in Firefox

Maybe this is common knowledge, but I just came across this tip this week. You can get rid of those annoying dotted borders around links in Firefox…

… just by adding this rule to your stylesheet:

a:focus, a:active {
    outline: none;
}

Clicky