您的位置:寻梦网首页编程乐园HTML园地HTML实用教程
HTML实用教程
作者:佚名 来源:梦之都(www.dreamdu.com)

9.8.1 HTML colgroup 标签

colgroup 标签 -- 表示对HTML表格进行结构化的分区,在此分区中可以通过使用col定义每列表格的样式
  • colgroup标签是成对出现的,以<colgroup>开始,以</colgroup>结束
  • 属性
    • Common -- 一般属性
    • span -- 定义一个colgroup跨越的列数,默认值为1

示例

<table border="1">
    <colgroup>
        <col />
        <col class="yellow" />
        <col />
        <col span="2" class="blue" />
    </colgroup> 
    <tr> 
        <th>www.dreamdu.com</th>
        <th>.com域名的数量</th>
        <th>.cn域名的数量</th>
        <th>.net域名的数量</th>
        <th>.com.cn域名的数量</th>
    </tr>
    <tr>
        <td>2003年</td>
        <td>1000</td>
        <td>2000</td>
        <td>3000</td>
        <td>4000</td>
    </tr>
</table>

HTML colgroup 标签示例 -- 可以尝试编辑

HTML视频教程