Answers for "css anchor tag remove 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
0

a tag remove underline css

a, u {
  text-decoration: none;
}
Posted by: Guest on March-07-2022

Code answers related to "css anchor tag remove underline"

Browse Popular Code Answers by Language