+ 7
Any way to remove the blue underline in HTML
4 Réponses
+ 7
/*use this CSS to remove default underlines on links*/
a{
text-decoration: none;
}
+ 4
Apply css "text-decoration: none" property to the <a>anchor tag.
+ 3
For all links go into your css file and add the following code:
a:link{
text-decoration:none;
}
+ 2
use
text-decoration: none;
in the CSS for a tag