frame属性指定外部表格边框的哪些部分应该是可见的。最好不要指定框架,而是使用CSS来应用边框 。
仅显示表格的外部边框:
<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 | 在所有四个边上显示外侧边框。 |