THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <table> frame Attribute

HTML table Reference HTML <table> tag

Example

Display only the outside borders of a table:

<table frame="box">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>
Try it yourself »

Definition and Usage

The <table> frame attribute is not supported in HTML5. Use CSS instead.

The frame attribute specifies which parts of the outside table borders that should be visible.

Tip: It may be better to NOT specify a frame, and use CSS to apply borders instead.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
frame Yes 9.0 Yes Yes Yes

Syntax

<table frame="value">

Attribute Values

Value Description
void The outside borders are not shown
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

HTML table Reference HTML <table> tag