Answers for "remove the underline of link"

CSS
9

remove underline from link css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
Posted by: Guest on December-21-2019
0

how to remove underline from link in html

how to remove underline from a tag:

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Posted by: Guest on October-09-2021

Code answers related to "remove the underline of link"

Browse Popular Code Answers by Language