tbody
适用DTD:Strict Transitional Frameset 适用浏览器:All
释义
表格主体(table body)
语法
<tbody 属性="属性值">~标签内容~</tbody>
<tbody 属性="属性值">~标签内容~</tbody>
属性
nbsp;
示范
<table>
<tbody>
<tr>...body information...
</tbody>
…
</table>
<tbody>
<tr>...body information...
</tbody>
…
</table>
范例
下面的例子显示了XHTML文件基础结构: 运行打印
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素thead、tffot、tbody</title>
</head>
<body>
<table border="1">
<thead align="center">
<tr> <td>...header information...<td>...header information...
</thead>
<tfoot style="font-style:italic">
<tr> <td>...footer information...<td>...foot information...
</tfoot>
<tbody>
<tr> <td>...first row of block one data...<td>...body information.............
<tr> <td>...second row of block one data...<td>...body information............
</tbody>
<tbody>
<tr> <td>...first row of block two data...<td>...body information.............
<tr> <td>...second row of block two data...<td>...body information............
</tbody>
</table>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素thead、tffot、tbody</title>
</head>
<body>
<table border="1">
<thead align="center">
<tr> <td>...header information...<td>...header information...
</thead>
<tfoot style="font-style:italic">
<tr> <td>...footer information...<td>...foot information...
</tfoot>
<tbody>
<tr> <td>...first row of block one data...<td>...body information.............
<tr> <td>...second row of block one data...<td>...body information............
</tbody>
<tbody>
<tr> <td>...first row of block two data...<td>...body information.............
<tr> <td>...second row of block two data...<td>...body information............
</tbody>
</table>
</body>
</html>
要建立表格行组,可以使用thead(表格头)、tfoot(表格底)和tbody(表格体),在建立表格时可以建立多个表格体,这样每个表格体都作为行组出现。
在table定义中tfoot必须在tbody前出现以便用户代理器可以在收到所有的(可能有众多数量)横行数据前渲染表格尾。下面概括了标签的省略规则:
在table定义中tfoot必须在tbody前出现以便用户代理器可以在收到所有的(可能有众多数量)横行数据前渲染表格尾。下面概括了标签的省略规则:
- tbody的开始标签总是必需的,除非表格只包含一个表格主体而没有表头或尾部,tbody的结束标签总是可以省略的;
- 表格的表头或尾部存在时则thead或tfoot不能省略,而它们的结束标签总是可以省略。