©
本文檔使用 php中文網手册 發布
VerticalAlign 属性用于设置或返回在 TableRow 控件中内容的垂直对齐方式。
<asp:TableRow VerticalAlign="align" runat="server">
Some Content
</asp:TableRow>
属性 | 描述 |
---|---|
align | 规定内容的垂直对齐方式。 可能的值:
|
下面的实例设置了 TableRow 控件的 VerticalAlign 属性:
<form runat="server">
<asp:Table id="tab1" runat="server">
<asp:TableRow VerticalAlign="Middle">
<asp:TableCell>
Hello!
</asp:TableCell>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>