表格列分组 ‹col› ‹colgroup›

Exisi 2020-06-04 14:45:15
Categories: Tags:

表格

描述

<colgroup>

定义表格列的组。

<col>

定义用于表格列的属性。

 

 

属性

描述

span

此属性包含一个正整数,指示 <colgroup> 元素跨越的连续列数。如果不存在,则其默认值为 1

 

 

 

属性

描述

span

该属性值为一个正整数,表示该 <col> 元素横跨的列数。默认值为 1

 

示例

<!DOCTYPE html>

<html lang="en">

 

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<style>

    table,

    th,

    td,

    tr,

    caption {

        border: 1px solid black;

    }

</style>

 

<body>

    <table>

        <caption>Superheros and sidekicks</caption>

        <colgroup>

            <col style="background-color: pink;">

            <col span="2" class="batman">

            <col span="2" class="flash">

        </colgroup>

        <tr>

            <td> </td>

            <th scope="col">Batman</th>

            <th scope="col">Robin</th>

            <th scope="col">The Flash</th>

            <th scope="col">Kid Flash</th>

        </tr>

        <tr>

            <th scope="row">Skill</th>

            <td>Smarts</td>

            <td>Dex, acrobat</td>

            <td>Super speed</td>

            <td>Super speed</td>

        </tr>

    </table>

</body>

 

</html>

 

浏览器运行结果如下: