【发布时间】:2017-06-17 22:15:24
【问题描述】:
我尝试使用 colgroup 为表格的每一列赋予宽度,但它不起作用。示例代码在这里
<table>
<colgroup width="100%">
<col style="width: 5%; background-color: red">
<col style="width: 15%;">
<col style="width: 25%;">
<col style="width: 20%;">
<col style="width: 10%;">
<col style="width: 15%;">
<col style="width: 10%;">
</colgroup>
<tr>
<th> no </th>
<th>Reference No</th>
<th>Vendor Name</th>
<th>Vendor Name</th>
<th>Vendor Name</th>
<th>Vendor Name</th>
<th>Vendor Name</th>
</tr>
</table>
【问题讨论】:
标签: html html-table