?
This document uses PHP Chinese website manual Release
TextAlign 屬性用于設(shè)置或返回 CheckBox 文本的對(duì)齊方式。
默認(rèn)的對(duì)齊方式是 "right"。
<asp:CheckBox?TextAlign="left|right"?runat="server"?/>
下面的實(shí)例設(shè)置了 CheckBox 文本的對(duì)齊方式:
?<form runat="server">
<asp:CheckBox id="check1" runat="server"
Text="Make it so" TextAlign="left" />
</form>