Example An HTML table with center-aligned rows: <table width="100%" border="1"> <tr align="...
Example
An HTML table with center-aligned rows:<table width="100%" border="1"> <tr align="center"> <th>Month</th> <th>Savings</th> </tr> <tr align="center"> <td>January</td> <td>$100</td> </tr> </table> |
Definition and Usage
The align attribute specifies the horizontal alignment of the content in a table row.Browser Support
The align attribute is supported in all major browsers.
Note: IE does not handle the "justify" value properly in tables, IE will center the content instead.
Note: None of the major browsers handles the "char" value correctly.
Syntax
<tr align="value"> |
Attribute Values
Value | Description |
---|---|
left | Left-align content (default for td elements) |
right | Right-align content |
center | Center-align content (default for th elements) |
justify | Stretches the lines so that each line has equal width (like in newspapers and magazines) |
char | Align the content to a specific character |