大家好,我有这样的桌子吗?
<table>
<colgroup>
<col class="selected">
<col>
</colgroup>
<tbody>
<tr>
<td>lorem</td>
<td>lorem</td>
</tr>
</tbody>
</table>
我的风格是:
col.selected {
background-color: #f3f3f3; /*for selected column*/
}
table tbody tr:nth-of-type(2n+2){
background-color:#fafafa; /*zebra effect*/
}
一切都很好,但是 zerba 风格 owerites col 选择风格。有什么想法可以避免这种情况,因此所选列将使用 col 的样式而不是 nth child ?