css remove text underline code example
Example 1: remove underline from link css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: how to remove all defualt underline in css
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
Example 3: remove underline html
<a style="text-decoration: none;"></a>
Example 4: underlive coming uner anchor tag after clicking
a, a:hover, a:active, a:visited, a:focus {
text-decoration:none;
}