table中的一些另类标签

Posted ★【金字塔】☆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了table中的一些另类标签相关的知识,希望对你有一定的参考价值。

thead/tbody/tfoot/caption/colgroup

注意:thead/tbody/tfoot三部分内容不受编辑顺序影响只和标签本身含义从头到脚显示不能把两个tbody的内容进行合并单元格。

代码段:

 

<table border="1" width="500">
<caption style="text-align: right">员工收入</caption>
<colgroup style="background-color: red"></colgroup>
<colgroup></colgroup>
<colgroup style="background-color: red"></colgroup>
<colgroup></colgroup>
<thead>
<tr>
<th>month</th>
<th>month</th>
<th>month</th>
<th>money</th>
</tr>
</thead>
<tbody>
<tr>
<td>一月</td>
<td>380</td>
<td>380</td>
<td>380</td>
</tr>
</tbody>
<tbody>
<tr>
<td>二月</td>
<td>380</td>
<td>380</td>
<td>380</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>三月</td>
<td>400</td>
<td>400</td>
<td>400</td>
</tr>
</tfoot>
</table>

 

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

怎么用CSS设置html中的表格边框样式

[20180627]truncate table的另类恢复.txt

操作栏标签片段中的片段?

table中的一些奇特标签

在哪里以及如何使用片段填充我的标签

table中的th标签