我有一个标签,我需要将文本对齐到中心
,我试过这个
,我试过这个
<asp:Label ID="Label3" runat="server" Text="ABC" style="text-align:center" Font-Bold="true" Font-Size="X-Large" CssClass="StrongText"></asp:Label>
但它不起作用..
解决方法
<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>