Answers for "css get rid of anchor tag underline"

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
4

remove underline anchor tag

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

remove underline from span inside anchor

a span{display: inline-block}
Posted by: Guest on December-09-2020

Code answers related to "css get rid of anchor tag underline"

Browse Popular Code Answers by Language