web api instance property
HTMLTableRowElement: align property
The align property of the HTMLTableRowElement interface is a string indicating how to horizontally align text in the <tr> table row. Individual cells can override it.
[!NOTE] This property is deprecated, and CSS should be used to align text horizontally in a cell. Use the CSS
text-alignproperty, which takes precedence, to horizontally align text in a row instead.
Value
The possible values are:
left- : Align the text to the left. Use
text-align: leftinstead.
- : Align the text to the left. Use
right- : Align the text to the right. Use
text-align: rightinstead.
- : Align the text to the right. Use
center- : Center the text in the cell. Use
text-align: centerinstead.
- : Center the text in the cell. Use
justify- : Spread the text across the cell. Use
text-align: justifyinstead.
- : Spread the text across the cell. Use
char- : Never fully supported, align text to a specified character. Use
text-align: <string>, where the string is a single character, when supported.
- : Never fully supported, align text to a specified character. Use
Examples
Use CSS text-align instead. An example is available on the text-align page.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.