ASP.NET HorizontalAlign Property
Complete Table Control Reference
Definition and Usage
The HorizontalAlign property is used to set or return horizontal alignment of
the content in the Table
control.
Syntax
<asp:Table HorizontalAlign="align" runat="server">
Some Content
</asp:Table>
| Attribute |
Description |
| align |
Specifies the horizontal alignment of the content.
Possible values:
- Center
- Justify
- Left
- NotSet (Default)
- Right
|
Example
The following example sets the HorizontalAlign property of a Table control:
<form runat="server">
<asp:Table id="tab1" runat="server" HorizontalAlign="Right">
<asp:TableRow>
<asp:TableCell>
Hello!
</asp:TableCell>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
Show example »
Complete Table Control Reference
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]