Answers for "remove underline from a-tag in only 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
2

remove underline anchor tag

{
	text-decoration: none;
}
Posted by: Guest on May-25-2020

Code answers related to "remove underline from a-tag in only html"

Browse Popular Code Answers by Language