admin管理员组

文章数量:1342661

I have a button :

<div class="HeaderBarThreshold">
     <asp:LinkButton ID="SetThreshold" OnClick="btnSetThreshold_Click" runat="server">Threshold</asp:LinkButton>
</div>

I am trying to change the color of the button on mouse hover :

Here is my css :

.HeaderBarThreshold
{
    padding-left: 10px;
    font-weight: bold;
}
.HeaderBarThreshold:hover
{
    color: Red;      
}

It doesnt work somehow. Please let me know.

I have a button :

<div class="HeaderBarThreshold">
     <asp:LinkButton ID="SetThreshold" OnClick="btnSetThreshold_Click" runat="server">Threshold</asp:LinkButton>
</div>

I am trying to change the color of the button on mouse hover :

Here is my css :

.HeaderBarThreshold
{
    padding-left: 10px;
    font-weight: bold;
}
.HeaderBarThreshold:hover
{
    color: Red;      
}

It doesnt work somehow. Please let me know.

Share edited Sep 6, 2013 at 19:27 Derek 3,4351 gold badge19 silver badges35 bronze badges asked Sep 6, 2013 at 19:21 CodeNinjaCodeNinja 3,27821 gold badges74 silver badges113 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 3

Try using the CssClass Property of ASP.NET controls. This will directly point the LinkButton itself to the CSS class, instead of having to use the div tag. For example:

<asp:LinkButton ID="SetThreshold" OnClick="btnSetThreshold_Click" runat="server" CssClass="HeaderBarThreshold">Threshold</asp:LinkButton>

Here is a fiddle http://jsfiddle/zpfw7/

    .HeaderBarThreshold
    {
    padding-left: 10px;
    font-weight: bold;
    width:300px;
    height:30px;
    border:1px solid #000;
    text-align:center;
    }
    .HeaderBarThreshold:hover
    {
    color: Red; 
    background:blue;
    }

try this thing:

.HeaderBarThreshold a:hover
{
    color: Red;      
}

Add the CSS class attribute to your web control

<asp:LinkButton CSSClass="HeaderBarThreshold" ID="SetThreshold" OnClick="btnSetThreshold_Click" runat="server">Threshold</asp:LinkButton>

Also your CSS is wrong anyway because you don't have anything assigned to class "HeaderBarThreshold".

just try this

.HeaderBarThreshold:hover a
{
     color: Red !important; // !important may not be necessary 
}
.upda_link {
    font-size: 15px !important;
    color: white;
    font-weight: bolder;
}

.upda_link:hover {
    text-decoration: none;
    color: white;
}

<asp:LinkButton ID="LinkButton1" runat="server" Text="Update" CssClass="upda_link" CausesValidation="false">
</asp:LinkButton>

本文标签: cChange color of an aspnet button on mouse hover using cssStack Overflow