Answers for "by default, a hyperlink has an underline. which code removes the underline?"

CSS
29

remove underline from hyperlink

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

How do you display hyperlinks without an underline?

a {
text-decoration: none;
}
Posted by: Guest on September-14-2020

Code answers related to "by default, a hyperlink has an underline. which code removes the underline?"

Browse Popular Code Answers by Language