Answers for "css hyperlink without underline"

14

remove underline html

<a style="text-decoration: none;"></a>
Posted by: Guest on February-20-2020
4

how to not underline links in css

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

remove underline from a tag

<a style="text-decoration: none">my link</a>
Posted by: Guest on May-06-2020
2

How do you display hyperlinks without an underline?

a {
text-decoration: none;
}
Posted by: Guest on September-14-2020

Code answers related to "css hyperlink without underline"

Browse Popular Code Answers by Language