remove default link styling code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove styling from a tag
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 3: remove default style from links css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 4: remove style from a tag
a {
color: inherit;
text-decoration: inherit;
}
Example 5: how to remove underline from link
<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Example 6: remove style from a tag
a { color: inherit; }