HTMLTableElement: align property

Deprecated

Avoid using this feature in new projects. Some table styling attributes have no effect. They are superseded by CSS. This feature may be a candidate for removal from web standards or browsers.

The HTMLTableElement.align property represents the alignment of the table.

Value

One of the following string values:

  • left
  • center
  • right

Examples

js
// Set the alignment of a table
const t = document.getElementById("TableA");
t.align = "center";

Specifications

Specification
HTML
# dom-table-align

Browser compatibility