Answers for "css avoid underline link"

CSS
29

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

Browse Popular Code Answers by Language