table中的一些奇特标签

<table border="3" width="300px">
<caption style="text-align: left">                  caption表格标题
zhouxiaoliang
</caption>
<colgroup></colgroup>                          colgroup用于对表格中的列进行组合,以便对其进行格式化。
<colgroup style="background-color: red"></colgroup>
<tbody>                                  
    <tr>
<td>123</td>
<td>123</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>123</td>
<td>123</td>
</tr>
</tfoot>
<thead>
<tr>
<td>12</td>
<td>12</td>
</tr>
</thead>
</table>

tbody 元素应该与 thead 和 tfoot 元素结合起来使用。

thead 元素用于对 HTML 表格中的表头内容进行分组,而 tfoot 元素用于对 HTML 表格中的表注(页脚)内容进行分组

posted @ 2017-07-20 14:22  哈喽杏红  阅读(295)  评论(0编辑  收藏  举报