asp.net - Why does my CSS style not update my control when I change it? -
i have css style @ top of page styles buttons. when change color (or propert) doesn't update button. fix this, have change name of style , every in project it's referenced, update change of style.
why happen?
my style (for example - basic style know)
.cssbuttonstyle { background: #ffffff; } my button
<asp:button id="btnsubmit" cssclass="cssbuttonstyle" runat="server" text="update/submit" width="150" height="30" onclick="btnsubmit_click" /> in design view, button white, on website still blue or whatever previous color had in style
what i've tried

add !important css. makes sure wont overuled other css
Comments
Post a Comment