Answers for "how to take out underline in css"

3

remove underline from a tag

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

remove underline in anchor tag

text-decoration:none;
Posted by: Guest on August-06-2020
0

how to put a h1 tag with underline ::after

h1:after {
   background: none repeat scroll 0 0 #HEXCOLOR;
   bottom: -10px;
   content: "";
   display: block;
   height: 10px;
   position: relative;
   width: 100px;
}
Posted by: Guest on November-24-2020

Code answers related to "how to take out underline in css"

Browse Popular Code Answers by Language