Fix-remove dotted borders from links

This simple CSS code fixes the problem I got in FireFox with "dotted" borders on links.

The CSS:

a {
    outline: none;/* get rid of dotted borders */
}

Recommended