HTML Dog
跳至导航

HTML 标签:col

表格中的一个或多个

col 元素是 colgroup 元素的子元素。

col 没有内容,因此不需要闭合标签。

可选属性

属性 描述 可能的值
span col 元素适用的列数。 数字。
全局属性

示例


<table>
    <caption>Citrus</caption>
    <colgroup span="2" class="columns1and2"></colgroup>
    <tr>
        <th>Lime</th>
        <th>Lemon</th>
        <th>Orange</th>
        <th>Kumquat</th>
    </tr>
    <!-- etc. -->
</table>

<table>
    <caption>Melon</caption
    <colgroup>
        <col class="column1">
        <col span="3" class="columns2and3and4">
    </colgroup>
    <tr>
        <th>Watermelon</th>
        <th>Honeydew</th>
        <th>Winter melon</th>
        <th>Bitter melon</th>
    </tr>
    <!-- etc. -->
</table>