HTML <colgroup> 标签
<colgroup> 标签用于表示 HTML 的表格列组,定义了表中的一组列表。实例:<colgroup> 标签实例
<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>运行实例点击"运行实例"按钮查看在线实例