HTML <col> span 属性
HTML <col> 标签的 span 属性用于设置 col 元素应该横跨的列数
语法
<col span="number"></col>
属性值
值 | 描述 |
---|---|
number | 设置 col 元素应该横跨的列数 |
浏览器支持
所有主流浏览器都支持 span 属性
范例
在这里,前两列背景颜色为红色
<table border="1"> <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>