Can someone help me figure out how to remove the annoying underline link that pops up when hovering over an a
element in HTML? I attempted adding a style="text-decoration: none"
attribute to the a
link, but the underline persists when I hover over the text.
I even experimented with this CSS:
.nounderline {
text-decoration: none;
}
.nounderline a:hover {
text-decoration: none;
}
Next, I tried applying the nounderline
class to the a
link, but still no luck in getting rid of the unwanted underline.