HTML 参考手册

HTML 标签大全

HTML table frame 属性

frame属性指定外部表格边框的哪些部分应该是可见的。最好不要指定框架,而是使用CSS来应用边框 。

 HTML <table> 标签

在线示例

仅显示表格的外部边框:

<p>表格带有frame ="box":</p>
<table frame="box">
  <tr>
    <th>姓名</th>
    <th>成绩</th>
  </tr>
  <tr>
    <td>王五</td>
    <td>96.5</td>
  </tr>
</table>

<p>表格带有frame ="above":</p>
<table frame="above">
  <tr>
    <th>姓名</th>
    <th>成绩</th>
  </tr>
  <tr>
    <td>王五</td>
    <td>96.5</td>
  </tr>
</table>

<p>表格带有frame ="below":</p>
<table frame="below">
  <tr>
    <th>姓名</th>
    <th>成绩</th>
  </tr>
  <tr>
    <td>王五</td>
    <td>96.5</td>
  </tr>
</table>

<p>表格带有frame ="hsides":</p>
<table frame="hsides">
  <tr>
    <th>姓名</th>
    <th>成绩</th>
  </tr>
  <tr>
    <td>王五</td>
    <td>96.5</td>
  </tr>
</table>

<p>表格带有frame ="vsides":</p>
<table frame="vsides">
  <tr>
    <th>姓名</th>
    <th>成绩</th>
  </tr>
  <tr>
    <td>王五</td>
    <td>96.5</td>
  </tr>
</table>
测试看看 ‹/›

浏览器兼容性

IEFirefoxOperaChromeSafari

Internet Explorer 9+、Firefox、Opera、Chrome 和 Safari 支持 frame 属性。

注意:Internet Explorer 8 及之前的版本不支持 <table> 标签的 frame 属性。

定义和用法

HTML5 不支持 <table> frame 属性。请使用 CSS 代替。

frame 属性指定外侧表格边框的哪个部分是可见的。

提示:从实用角度出发,最好不要指定 frame,而是使用 CSS 来添加 borders(边框样式)

语法

<table frame="value">

属性值

描述
void不显示外侧边框。
above显示上部的外侧边框。
below显示下部的外侧边框。
hsides显示上部和下部的外侧边框。
vsides显示左边和右边的外侧边框。
lhs显示左边的外侧边框。
rhs显示右边的外侧边框。
box在所有四个边上显示外侧边框。
border在所有四个边上显示外侧边框。
 HTML <table> 标签