Answers for "how to remove text-decoration on lins i html"

CSS
29

remove underline from a link css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
Posted by: Guest on December-21-2019
0

text decoration underline not removing

a:link {
  text-decoration: none!important;
}
Posted by: Guest on August-12-2021

Code answers related to "how to remove text-decoration on lins i html"

Browse Popular Code Answers by Language