Answers for "css a without underline"

1

css no underline

#Just set text decoration to none
.a {
    text-decoration: none;
}
Posted by: Guest on April-17-2021
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
0

how to remove underline from list item in html

text-decoration: none; /* remove underline in text ; put this style in <a>
container; ie : link's container */
list-style : none; /* remove bullet points from list */
Posted by: Guest on August-10-2020

Browse Popular Code Answers by Language