Answers for "link underline on hover although text-decoration: none"

CSS
0

how to take of underline from link through css

<a style ="text-decoration-line: none;">halo</a>
can be used in vs code
Posted by: Guest on August-24-2021
0

.txt:hover { text-decoration: underline; }

&:hover {
      text-decoration: underline;
  }
Posted by: Guest on January-21-2020

Code answers related to "link underline on hover although text-decoration: none"

Browse Popular Code Answers by Language