最新的Web开发教程
 

HTML <col> span Attribute

<HTML <col>标签

这里,前两列应具有红色的背景色:

<table>
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </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>
</table>
试一试»

定义和用法

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


浏览器支持

属性
span

HTML 4.01和HTML5之间的差异

没有。


句法

<col span="number">

属性值

描述
number 设置一个列数<col>元素应该跨越

<HTML <col>标签