Search w3schools.com:

SHARE THIS PAGE

Table frame Property

Table Object Reference Table Object

Definition and Usage

The frame property sets or returns which outer-borders (of a table) that should be displayed.

Syntax

Set the frame property:

tableObject.frame="void|above|below|hsides|vsides|lhs|rhs|box|border"

Return the frame property:

tableObject.frame

Value Description
void The outside borders are not shown. This is default
above The top outside border is shown
below The bottom outside border is shown
hsides The top and bottom outside borders are shown
vsides The left and right outside borders are shown
lhs The left outside border is shown
rhs The right outside border is shown
box The outside borders are shown on all four sides
border The outside borders are shown on all four sides


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The frame property is supported in all major browsers.

Note: IE9 displays this property correctly. Earlier versions of IE displays the borders on the cells within the table too (instead of on only the outside borders).


Example

Example

Set two different outer-borders of a table:

<html>
<head>
<script>
function above()
{
document.getElementById('myTable').frame="above";
}
function below()
{
document.getElementById('myTable').frame="below";
}
</script>
</head>
<body>

<table id="myTable" border="1">
  <tr>
    <td>cell 1</td>
    <td>cell 2</td>
  </tr>
  <tr>
    <td>cell 3</td>
    <td>cell 4</td>
  </tr>
</table>
<br>
<button type="button" onclick="above()">Show above frames</button>
<button type="button" onclick="below()">Show below frames</button>

</body>
</html>

Try it yourself »


Table Object Reference Table Object

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]