HTMLTableElement: frame プロパティ
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 インターフェイスの frame プロパティは、文字列で表の外部の境界のうちどれを描画するかを示します。
値
以下のいずれかです。
例
js
// TableA の枠を 'border' に設定
const t = document.getElementById("TableA");
t.frame = "border";
t.border = "2px";
仕様書
| 仕様書 |
|---|
| HTML> # dom-table-frame> |