HTML
HTML <table> 元素
带有 colgroup 的表
源代码:
点击运行 »
<style> table { border-collapse: collapse; border-spacing: 0px; } table, th, td { padding: 5px; border: 1px solid black; } </style> <p>带有 <code>colgroup</code> 的表格 </p> <table> <colgroup span="4"></colgroup> <tr> <th>国家</th> <th>首都</th> <th>人口</th> <th>语言</th> </tr> <tr> <td>美国</td> <td>华盛顿特区</td> <td>3.09 亿</td> <td>英语</td> </tr> <tr> <td>瑞典</td> <td>斯德哥尔摩</td> <td>900 万</td> <td>瑞典語</td> </tr> </table>
运行结果:
点击运行 »