remove link color from a css code example
Example 1: text underline hover css
a:hover {
text-decoration: underline;
}
Example 2: remove style from a tag
a { color: inherit; }
a:hover {
text-decoration: underline;
}
a { color: inherit; }