ASP.NET VerticalAlign 属性

定义和用法

VerticalAlign 属性用于设置或返回在 TableRow 控件中内容的垂直对齐方式。

语法

  1. <asp:TableRow VerticalAlign="align" runat="server">
  2. Some Content
  3. </asp:TableRow>
属性 描述
align 规定内容的垂直对齐方式。 可能的值: - Bottom - Middle - NotSet - Top

实例

下面的例子设置了 TableRow 控件的 VerticalAlign 属性:

  1. <form runat="server">
  2. <asp:Table id="tab1" runat="server">
  3. <asp:TableRow VerticalAlign="Middle">
  4. <asp:TableCell>Hello!</asp:TableCell>
  5. <asp:TableCell>Hello!</asp:TableCell>
  6. </asp:TableRow>
  7. </asp:Table>
  8. </form>

实例

  • 设置 TableRow 控件的垂直对齐方式