Answers for "css how to remove hyperlink underline"

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
-2

how to remove the line from a link in css

/*like suppose I take a tag of html*/
a{
  decoration:none;
}
Posted by: Guest on April-06-2021

Code answers related to "css how to remove hyperlink underline"

Browse Popular Code Answers by Language