The HTMLTableElement interface's frame property is a string that indicates which of the table's exterior borders should be drawn.
HTMLTableElement.frame = frameSides; var frameSides = HTMLTableElement.frame;
fromSides is a string whose value is one of the following values: void"above""below""hsides""vsides""lhs""rhs""box""border"// Set the frame of TableA to 'border'
var t = document.getElementById('TableA');
t.frame = "border";
t.border = "2px";
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/frame