?
このドキュメントでは、 php中國語ネットマニュアル リリース
VerticalAlign 屬性用于設(shè)置或返回在 TableRow 控件中內(nèi)容的垂直對齊方式。
<asp:TableRow VerticalAlign="align" runat="server">
Some Content
</asp:TableRow>
?
屬性 | 描述 |
---|---|
align | 規(guī)定內(nèi)容的垂直對齊方式。 可能的值:
|
下面的實例設(shè)置了 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>