Web/API/HTMLTableElement/frame

From Get docs


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

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

frame

Deprecated'

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.