HTML
HTML <table> 元素
带有头部的简单表
源代码:
点击运行 »
<style> table { border-collapse: collapse; border-spacing: 0px; } table, th, td { padding: 5px; border: 1px solid black; } </style> <p>带有头部的简单表格</p> <table> <tr> <th>姓</th> <th>名</th> </tr> <tr> <td>张</td> <td>三</td> </tr> <tr> <td>李</td> <td>四</td> </tr> </table>
运行结果:
点击运行 »