asp:Button will not be styled with css.
CSS:
.TabButton
{
border: none;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
HTML5:
<asp:Button runat="server" Text="Events" CssClass ="TabButton" OnClick ="NavigationTab_OnClick" style="background-image:url(image link)"/>
This doesn't work. The css code has no effect on the button. I have tried changing the "CssClass" property to just "class". Still nothing. I have also tried "id". I can style other elements using the same .css file.