Answers for "how to remove blue underline in a tag"

14

remove underline html

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

Browse Popular Code Answers by Language