I want to change color of link button so I made CSS like this:
.stylink
a
{ font:10px; color:white; }
a:hover
{ font:12px; color:#ff0; }
I have link button:
<asp:LinkButton ID="lbtn_gvinfo" runat="server"
Text="arshad" CssClass="stylink" Font-Underline="false" ></asp:LinkButton>
This a:hover
property of CSS works but a
dosn't work. When I point cursor on link button it becomes yellow, but after that it remains blue.