HTML
HTML <table> 元素
带有 colgroup 和 col 的表
源代码:
点击运行 »
<style> table { border-collapse: collapse; border-spacing: 0px; } table, th, td { padding: 5px; border: 1px solid black; } </style> <p>带有 <code>colgroup</code> 和 <code>col</code> 的表格</p> <table> <colgroup> <col style="background-color: #0f0"> <col span="2"> </colgroup> <tr> <th>青柠</th> <th>柠檬</th> <th>橙子</th> </tr> <tr> <td>绿色</td> <td>黄色</td> <td>橙色</td> </tr> </table>
运行结果:
点击运行 »