J
Jeff
hey
asp.net 2.0
I have a HyperLink control on my webpage, I want this HyperLink to display a
underline when mouse is hovering over it. This is NOT a html link, but a
System.Web.UI.WebControls.HyperLink
This is my CSS (which I use to set font size and remove the underline, but
when mouse are hovering I want the link to display a underline):
..level0
{
font-size:small;
text-decoration:none;
color:Black;
}
This is my HyperLink:
<asp:HyperLink ID="hlTag0" runat="server"></asp:HyperLink>
I tryed this CSS class but don't generate a underline
..level0:hover
{
font-size:small;
color:Black;
}
Any suggestions?
Jeff
asp.net 2.0
I have a HyperLink control on my webpage, I want this HyperLink to display a
underline when mouse is hovering over it. This is NOT a html link, but a
System.Web.UI.WebControls.HyperLink
This is my CSS (which I use to set font size and remove the underline, but
when mouse are hovering I want the link to display a underline):
..level0
{
font-size:small;
text-decoration:none;
color:Black;
}
This is my HyperLink:
<asp:HyperLink ID="hlTag0" runat="server"></asp:HyperLink>
I tryed this CSS class but don't generate a underline
..level0:hover
{
font-size:small;
color:Black;
}
Any suggestions?
Jeff