I have a website with custom CSS styling applied to an <A>
tag, including styles for A:hover
. However, I need to remove these hover effects for one specific instance of the tag. Is there a way in CSS to set a property so that it does not change?
Let's consider the following:
A:hover {
font-family: no-change;
}
Alternatively, is there a different approach to exclude the A:tag
from affecting this particular tag?