Use W3C documentation for the XHTML1.1 table model. (http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_tablemodule)
Sets the horizontal (line) alignment inside a table cell
The @align attribute is used in two different ways. 1) It specifies the horizontal alignment for the entire cell (such as “ center ” or “ justify ”. 2) It is used for aligning values in table cells on a particular character within the cell, commonly a decimal point. Alignment on a particular character requires that three attributes be set in the XML document:
| Value | Meaning |
|---|---|
| center | Center align the cell contents |
| char | Align the text on the character identified with the @char attribute |
| justify | Fully justify cell contents (right and left justification) |
| left | Left justify cell contents |
| right | Right justify cell contents |
| Restriction: This attribute may be specified if the element is used. | |