Aug 13, 2013

CSS: How to disable automatic links coloring without selecting a color?

If you don't want any coloration just do something like this:

a {
color:inherit;
text-decoration: none;
}

If it still hovers, just do "a, a:hover, a:visited, a:active {...}

SOURCE

No comments: