HTMLTableElement: frame-Eigenschaft
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.>
Die frame-Eigenschaft des HTMLTableElement-Interfaces ist ein String, der angibt, welche der äußeren Rahmen der Tabelle gezeichnet werden sollen.
Wert
Einer der folgenden:
Beispiele
js
// Set the frame of TableA to 'border'
const t = document.getElementById("TableA");
t.frame = "border";
t.border = "2px";
Spezifikationen
| Spezifikation |
|---|
| HTML> # dom-table-frame> |