最新的Web开发教程
 

HTML <colgroup> span Attribute

<HTML <colgroup>标签

设置使用前两列的背景颜色<colgroup> span属性:

<table>
  <colgroup span="2" style="background:red"></colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>
试一试»

定义和用法

span属性定义的列数<colgroup>元素应该跨越。

提示:要中定义不同的属性到列<colgroup>使用<col>的内标签<colgroup>标签。


浏览器支持

属性
span

HTML 4.01和HTML5之间的差异

没有。


句法

<colgroup span="number">

属性值

描述
number 设置一个栏目组应跨越的列数

<HTML <colgroup>标签