ASP.NET HorizontalAlign Property

Definition and Usage

The HorizontalAlign property is used to set or return the horizontal alignment of the content within the Table control.

Syntax

<asp:Table HorizontalAlign="align" runat="server">
Some Content
</asp:Table>
Property Description
align

Specify the horizontal alignment of the content.

Possible values:

  • Center
  • Justify
  • Left
  • NotSet (default)
  • Right

Example

The following example sets the HorizontalAlign property of the Table control:

<form runat="server">
<asp:Table id="tab1" runat="server" HorizontalAlign="Center">
<asp:TableRow>
<asp:TableCell>Hello!</asp:TableCell>
<asp:TableCell>Hello!</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>

Example

Set Horizontal Alignment for Table Control