how to remove blue in a tag code example
Example 1: remove style from a tag
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}
Example 2: remove style from a tag
a { color: inherit; }
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}
a { color: inherit; }