HTML
HTML <col> 元素
通过 <colgroup> 和 <col> 元素为表格中的三个列设置了背景色
源代码:
点击运行 »
<table border="1"> <colgroup> <col span="2" style="background-color: green"> <col style="background-color: orange"> </colgroup> <tr> <th>书号</th> <th>书名</th> <th>价格</th> </tr> <tr> <td>3476896</td> <td>我的 HTML</td> <td>¥53</td> </tr> </table>
运行结果:
点击运行 »