HTML td align attribute
Example
An HTML table with a right-aligned cell:<table width="100%" border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td align="right">$100</td> </tr> </table> |
Definition and Usage
The align attribute specifies the horizontal alignment of the content in a cell.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
<td align="value"> |
Attribute Values
Value | Description |
---|---|
left | Left-align content (default for td elements) |
right | Right-align content |
center | Center-align content |
justify | Stretches the lines so that each line has equal width (like in newspapers and magazines) |
char | Align the content to a specific character |
HTML td align attribute
Reviewed by 1000sourcecodes
on
21:27
Rating: