我想向asp.net標籤添加樣式,但它不會工作。向asp.net標籤添加樣式
ASP.NET Mark up
<asp:Label runat="server" ID="lblCommentText"/>
Generated from the backend: Html mark up
<span id="ctl02_ctl36_CommentText">Only the leave the comment please</span>
............................................
我想下面的樣式添加到標籤
{
float:right;
width:70%;
}
我使用
CssClass屬性
試圖加入這個
lblCommentText.Attributes.CssStyle.Add("float", "right");
到後端 使用JavaScript
,並內嵌樣式的元素
document.getElementById('<%= lblCommentText.ClientID%>').Style.display = ("float","right");
他們沒有工作0
,有人可以幫我嗎?
'顯示:inline-block的;' – Abhitalks
夫婦什麼'.class'裏面說並應用類的'Label'的'CssClass'財產@abhitalks。 –