Answers for "remove underline link css hover"

4

how to not underline links in css

a {
    text-decoration: none;
}
Posted by: Guest on November-10-2020
0

remove style from a tag

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
Posted by: Guest on May-16-2020
3

how to remove underline from link

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Posted by: Guest on October-04-2020

Code answers related to "remove underline link css hover"

Browse Popular Code Answers by Language