Answers for "how to remove all styles from a tag"

CSS
9

remove styling from a tag

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

reset a tag css

a {
  color: inherit;
  text-decoration: inherit; /* no underline */
}
Posted by: Guest on December-26-2020
1

remove style from a tag

a { color: inherit; }
Posted by: Guest on May-11-2020
0

remove basic html style link

body {
  color: blue;
}
a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language