+ 4
How can i remove underline in links in navigation bar?
5 Respuestas
+ 7
Mohd Adnan use CSS. text-decoration:none;
+ 11
nav a{
text-decoration:none;
}
+ 5
Something like that in your css code :
ul li a {
text-decoration : none;
}
+ 2
It depends of your code. You may use CSS or the inline "style" attribute.
<a href="https://site.com" style="text-decoration:none">url</a>
https://www.w3schools.com/tags/tag_a.asp
+ 1
Thankuu all you all are very helpful .