reset anchor css code example
Example 1: reset a tag css
a {
color: inherit;
text-decoration: inherit; /* no underline */
}
Example 2: remove basic html style link
body {
color: blue;
}
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}