HTML
HTML <thead> 元素
带有 <thead> 元素的 HTML 表
源代码:
点击运行 »
<table> <thead> <tr> <th>月份</th> <th>存款</th> </tr> </thead> <tbody> <tr> <td>一月</td> <td>600元</td> </tr> <tr> <td>二位</td> <td>300元</td> </tr> </tbody> <tfoot> <tr> <td>汇总</td> <td>900元</td> </tr> </tfoot> </table>
运行结果:
点击运行 »