Here's the CSS code I am currently using:
LinkButton:hover
{
color:White;
background-color:Gray;
}
.myClass
{
color:Blue;
}
The issue I'm facing is that I have a LinkButton with the CssClass .myClass
, and when I hover over it, the background color changes but the text color remains blue. Is there a way to override the .myClass
style with the LinkButton:hover
style to make the text color white when hovering over it?