在这里,前两列的背景色应该是红色:
<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>
元素应该跨越的列数。
属性 Attribute | |||||
---|---|---|---|---|---|
span | Yes | Yes | Yes | Yes | Yes |
<col span="number">
值 Value | 描述 Description |
---|---|
number | 设置 <col> 元素应跨越的列数 |