I'm a novice at asp.net and I want to give style to a linklabel. My code as follows:
<asp:LinkButton ID="lnkUser" runat="server" CssClass="userlabel">Guest</asp:LinkButton>
.userlabel {
display:inline-block;
text-decoration: underline;
background-color:coral;
}
I am suspicious about jQuery overrides Site.css code. Is it possible? What am I doing wrong?
You can use !important in css
Will render in html as:
So you can add style for that like bellow to give importance