table中的一些奇特标签

Posted 哈喽杏红

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 表格中的表注(页脚)内容进行分组

以上是关于table中的一些奇特标签的主要内容,如果未能解决你的问题,请参考以下文章

table中的一些另类标签

JS如何过滤掉table中的thead标签, 急!

elementUI中的el-table标签介绍

详解html中的元老级元素:“table”

关于标签选择器获取table中的<td>标签中的html值,以及<td>中<input type=‘text‘>中的value值的详解

html中的table标签中如何将几个<td>合在一起的