HTML 参考手册
HTML <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>
运行结果:
点击运行 »