The HTMLTableElement interface's frame property is a string that indicates which of the table's exterior borders should be drawn.
Syntax
HTMLTableElement.frame = frameSides; var frameSides = HTMLTableElement.frame;
Parameters
frameSides is a string whose value is one of the following values:
void- No sides. This is the default.
"above"- Top side
"below"- Bottom side
"hsides"- Top and bottom only
"vsides"- Right and left sides only
"lhs"- Left-hand side only
"rhs"- Right-hand side only
"box"- All four sides
"border"- All four sides
Example
// Set the frame of TableA to 'border'
var t = document.getElementById('TableA');
t.frame = "border";
t.border = "2px";
Specification
- W3C DOM 2 HTML Specification
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Chrome
Full support Yes |
Edge
Full support 12 |
Firefox
Full support Yes |
IE
Full support Yes |
Opera
Full support Yes |
Safari
Full support Yes |
WebView Android
Full support Yes |
Chrome Android
? |
Firefox Android
Full support Yes |
Opera Android
Full support Yes |
Safari iOS
Full support Yes |
Samsung Internet Android
? |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
- Deprecated. Not for use in new websites.'
- Deprecated. Not for use in new websites.
HTMLTableElement.frame by Mozilla Contributors is licensed under CC-BY-SA 2.5.