我有一个标签,我需要将文本对齐到中心 ,我试过这个
<asp:Label ID="Label3" runat="server" Text="ABC" style="text-align:center" Font-Bold="true" Font-Size="X-Large" CssClass="StrongText"></asp:Label>
但它不起作用..
答案 0 :(得分:21)
<div style="margin-left: auto; margin-right: auto; text-align: center;">
<asp:Label ID="Label3" runat="server" Text="ABC" Font-Bold="true" Font-Size="X-Large"
CssClass="StrongText"></asp:Label>
</div>
答案 1 :(得分:3)
如果你写text-align: center;
它将无效,请尝试将display:inline-block;
添加到样式定义中。
答案 2 :(得分:1)
将边距设为0;总是检查任何元素的父元素,因为它们继承了它们的css属性
答案 3 :(得分:0)
Use the following CSS Class to align label text center
.textAlign{
text-align:center;
}