thead
适用DTD:Strict Transitional Frameset 适用浏览器:All
释义
表格表头(table head)
语法
<thead 属性="属性值">~标签内容~</thead>
<thead 属性="属性值">~标签内容~</thead>
说明
thead元素的标签内容可包含tr元素及tr元素的子元素,而且必须包含至少一个行tr
在table元素的标签内容内配置thead、tfoot元素的目的是在未知表格内容(tbody元素的标签内容)较长而进行打印时,可在每页的头尾都印出thead、tfoot元素的标签内容(此功能需浏览器支持)
终止标签可以省略
属性
nbsp;
示范
<table>
<thead>
<tr>...header information...
</thead>
…
</table>
<thead>
<tr>...header information...
</thead>
…
</table>
thead、tbody、tfoot可用来进行行编组,就是利用这些元素将一些有特定功能的在同一行内的单元格,编组为一种新表格行,然后赋予这些行特殊的含义,这方便进行统一控制。