PDA

View Full Version : How to display a link without underline when mouseover on the link using CSS?



sulbha
08-09-2017, 10:15 AM
How to display a link without underline when mouseover on the link using CSS?

GridCash
03-24-2018, 05:34 PM
<a href="#" class="link">LINK</a>

in CSS

.link:hover {
text-decoration: none;
}

seojyoti
05-15-2019, 06:51 AM
Put the following HTML code before the <BODY> tag: <STYLE>A {text-decoration: none;} </STYLE>