HTML 参考手册
HTML <colgroup> width 属性
一个规定了第一列的预定义宽度值为 200 像素的 <colgroup> 元素
源代码:
点击运行 »
<table border="1"> <colgroup width="200"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table>
运行结果:
点击运行 »