weird stuff with asp.net button CSS class
- by Alexander
I have the following button:
<Club:RolloverButton runat="server" ValidationGroup="Login1" Text="Login" ID="LoginButton"
CommandName="Login" CssClass="links" />
.links {
display: block;
width: 96px;
padding: 2px 0px 2px 0px;
background: #A53602;
text-align: center;
text-transform: uppercase;
font-size: 10px;
color: #FFFFFF;
}
When this button shows up the first time it shows the style correctly, however if I hover my mouse over this button the layout turns into a standard button, why is that??