Answers for "how to make underline in css without text decoration"

CSS
1

css without underline

#Just set text decoration to none
.a {
    text-decoration: none;
}
Posted by: Guest on April-17-2021
0

underline css still there after text-decoration: none

a,
a:link,
a:visited,
a:hover,
a:active{
    text-decoration: none;
}
Posted by: Guest on October-25-2021

Code answers related to "how to make underline in css without text decoration"

Browse Popular Code Answers by Language