0
我可以基於列索引爲表中的每列設置css中的寬度屬性嗎?即基於索引將寬度屬性分配給表中的列
table column_with_index_[0] {
width: 100px;
}
table column_with_index_[1] {
width: 200px;
}
...
在我的.css?
只有一個簡單的表結構
<table>
<tbody>
<tr>
<th></th>
<th></th>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
等.. ?