ASP.NET VerticalAlign Property
Definition and Usage
The VerticalAlign property is used to set or return the vertical alignment of the content within the TableRow control.
Syntax
<asp:TableRow VerticalAlign="align" runat="server"> Some Content </asp:TableRow>
Property | Description |
---|---|
align |
Specifies the vertical alignment of the content. Possible Values:
|
Example
The following example sets the VerticalAlign property of the TableRow control:
<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>
Example
- Set the Vertical Alignment of TableRow Control