html - CSS applied to asp:Label under placeholder1 only working in design view? -
all other parts of css work fine in browser. part works in design view. tried adding cssclass , clearing cache , running on ie, chrome , firefox. nothing seems work.
<asp:label id="lblwelcometext" runat="server" text="welcome" cssclass="welcome"> .welcome{ display: inline-block; text-align:center; /*border-bottom: 5px solid #f0f1e7;*/ color: #ffe9da; font-family: sans-serif; font-size: 68px; font-weight: normal; /*line-height: 48px; margin: 0 0 26px; padding: 0 0 24px;*/ }
- make sure closed
</asp:label>
tag. - check rendered html code using inspect element tool of browser, markup must :
<span id="lblwelcometext" class="welcome">welcome</span>
- when inspect element using tool can check css applied element. can install firebug firefox browser inspect element. please update problem detail.
Comments
Post a Comment