All the anchor tags on my website have been styled with text-decoration: none
.
Additionally, I have added a CSS rule based on a helpful answer:
a, a:hover, a:active, a:visited {
text-decoration:none;
}
However, whenever I right-click on a link on my website to open the inspector element, the link suddenly becomes underlined.
Can anyone explain why this is happening?