table-列组

Posted 喵嘻嘻

tags:

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>colgroup</title>
    <style>
        .engine{
            background-color: aquamarine;
        }
    </style>
</head>
<body>
<table border="1">
    <!--列组 -->
    <colgroup>
        <col class="browser">
        <col class="engine" span="2">
    </colgroup>
    <thead>
        <tr>
            <th>浏览器</th>
            <th>渲染引擎</th>
            <th>javascript 引擎</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>Chrome</th>
            <td>Blink</td>
            <td>V8</td>
        </tr>
        <tr>
            <th>Opera</th>
            <td>Blink</td>
            <td>V8</td>
        </tr>
        <tr>
            <th>Edge</th>
            <td>EdgeHTML</td>
            <td>Chakra</td>
        </tr>
    </tbody>
</table>
</body>
</html>

效果:

以上是关于table-列组的主要内容,如果未能解决你的问题,请参考以下文章

将一个表的连接列与另一个表的一列组合成 JAVA 对象

Discuz代码片段

用JavaScript方式创建easyUI datagrid Column Group(列组)

如何根据列组前缀替换列组的空白?

如何在 Kendo Grid 中隐藏列组

Microsoft SQL Server 代码片段收集