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