?
? ????? PHP ??? ???? ??? ?? ??
TextAlign 屬性用于獲取或設(shè)置 CheckBoxList 項(xiàng)目的文本的文本對(duì)齊方式。
<asp:CheckBoxList TextAlign="align" runat="server">
Some Content
</asp:CheckBoxList>
屬性 | 描述 |
---|---|
align | 為列表項(xiàng)目規(guī)定文本的對(duì)齊方式。 可能的值:
|
下面的實(shí)例把 CheckBoxList 控件中的 TextAlign 屬性設(shè)置為 "Left":
<form runat="server">
<asp:CheckBoxList id="rb1"
runat="server" TextAlign="Left">
Some content
</asp:CheckBoxList>
</form>