搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<p>表格带有rules="rows":</p> <table rules="rows"> <tr> <th>年级</th> <th>人数</th> </tr> <tr> <td>三年级</td> <td>56</td> </tr> </table> <p>表格带有rules="cols":</p> <table rules="cols"> <tr> <th>年级</th> <th>人数</th> </tr> <tr> <td>三年级</td> <td>56</td> </tr> </table> <p>表格带有rules="all":</p> <table rules="all"> <tr> <th>年级</th> <th>人数</th> </tr> <tr> <td>三年级</td> <td>56</td> </tr> </table>
运行结果