HTMLTableElement: align プロパティ
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.>
HTMLTableElement.align プロパティは、表の配置を表します。
値
以下の文字列値のいずれかです。
leftcenterright
例
js
// 表の位置を設定
const t = document.getElementById("TableA");
t.align = "center";
仕様書
| 仕様書 |
|---|
| HTML> # dom-table-align> |