Answers for "how to remove all decoration on a href link tag in css"

CSS
18

remove style from link

a, a:hover, a:focus, a:active {
     text-decoration: none;
     color: inherit;
 }
Posted by: Guest on February-22-2020

Code answers related to "how to remove all decoration on a href link tag in css"

Browse Popular Code Answers by Language