Answers for "code to remove the underline on hyperlinks and visited hyperlinks?"

CSS
20

remove underline from hyperlink

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

Code answers related to "code to remove the underline on hyperlinks and visited hyperlinks?"

Browse Popular Code Answers by Language