Answers for "remove href underline"

9

remove underline from hyperlink

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

remove underline html

<a style="text-decoration: none;"></a>
Posted by: Guest on February-20-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