In my asp.net application, there is a hyperlink. I want to change it's color to white when I hover over it using css, but it is not working.
<asp:HyperLink ID="hlViewItem" class="hplClass" runat="server" NavigateUrl='<%#Eval("Pro_Id","ProductDetails.aspx?ProID={0}") %>' ForeColor="#33ccff">View Item</asp:HyperLink>
My css:
.hplClass:hover
{
color:white;
}
ASP.Net.