Answers for "remove hyperlink underlinein css"

CSS
21

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 the underline from a link in css

text {
	text-decoration: none;
}
Posted by: Guest on January-08-2022

Code answers related to "remove hyperlink underlinein css"

Browse Popular Code Answers by Language