Answers for "how to remove hyperlink style in css"

CSS
13

remove style from link

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

remove basic html style link

a {
  color: blue;
  text-decoration: none; /* no underline */
}
Posted by: Guest on January-08-2021

Code answers related to "how to remove hyperlink style in css"

Browse Popular Code Answers by Language