ASP.NET TableCell HorizontalAlign 属性


TableCell 控件 TableCell 控件

定义和用法

HorizontalAlign 属性用于设置或返回在 TableCell 控件中内容的水平对齐方式。

语法

<asp:TableCell HorizontalAlign=" align" runat="server">
Some Content
</asp:TableCell>
 
属性 描述
align 规定内容的水平对齐方式。

可能的值:

  • Center
  • Justify
  • Left
  • NotSet (Default)
  • Right


实例

下面的实例设置了 TableCell 控件的 HorizontalAlign 属性:

   <form runat="server">
   <asp:Table id="tab1" runat="server">
   <asp:TableRow>
   <asp:TableCell HorizontalAlign="Center">
   Hello!
   </asp:TableCell>
   <asp:TableCell>
   Hello!
   </asp:TableCell>
   </asp:TableRow>
   </asp:Table>
   </form> 
 

TableCell 控件 TableCell 控件