Answers for "how to remove utline from link in css"

CSS
9

remove underline from link css

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

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 "how to remove utline from link in css"

Browse Popular Code Answers by Language