Answers for "How to remove underline from hyperlinks 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
3

how to remove underline from link

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

Code answers related to "How to remove underline from hyperlinks CSS"

Browse Popular Code Answers by Language