我有一个按钮:
<div class="HeaderBarThreshold">
<asp:LinkButton ID="SetThreshold" OnClick="btnSetThreshold_Click" runat="server">Threshold</asp:LinkButton>
</div>
我正在尝试更改鼠标悬停时按钮的颜色:
这是我的css:
.HeaderBarThreshold
{
padding-left: 10px;
font-weight: bold;
}
.HeaderBarThreshold:hover
{
color: Red;
}
它不起作用。请告诉我。
最佳答案
试试这个
.HeaderBarThreshold:hover a
{
color: Red !important; // !important may not be necessary
}