remove link style css code example
Example 1: remove underline from link css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 3: remove underline html
<a style="text-decoration: none;"></a>
Example 4: text underline hover css
a:hover {
text-decoration: underline;
}
Example 5: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
Example 6: remove style from a tag
a { color: inherit; }