Answers for "Which property can remove the underline from links? in html"

13

remove style from link

a, a:hover, a:focus, a:active {
     text-decoration: none;
     color: inherit;
 }
Posted by: Guest on February-22-2020
14

remove underline html

<a style="text-decoration: none;"></a>
Posted by: Guest on February-20-2020

Code answers related to "Which property can remove the underline from links? in html"

Browse Popular Code Answers by Language