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

enter image description here

add !important css. makes sure wont overuled other css


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -