HTMLTableRowElement: align property
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The Note:
This property is deprecated, and CSS should be used to align text horizontally in a cell. Use the CSS The possible values are: Align the text to the left. Use Align the text to the right. Use Center the text in the cell. Use Spread the text across the cell. Use Never fully supported, align text to a specified character. Use Use CSS align
property of the HTMLTableRowElement
interface is a string indicating how to horizontally align text in the table row. Individual cells can override it.
text-align
property, which takes precedence, to horizontally align text in a row instead.Value
left
text-align: left
instead.right
text-align: right
instead.center
text-align: center
instead.justify
text-align: justify
instead.char
text-align:
, where the string is a single character, when supported.Examples
text-align
instead. An example is available on the text-align
page.Specifications
Specification HTML
# dom-tr-alignBrowser compatibility
See also