给定一张桌子
<table>
<tr class="sechead">...
<tr>...
<tr>...
<tr class="sechead">...
<tr>...
<tr>...
</table>
我尝试了以下方法。我希望它为 sechead 之后的行交替颜色。
table tr.sechead:nth-child(even) ~ tr{background-color:rgb(75,172,198);}
table tr.sechead:nth-child(odd) ~ tr{background-color:rgb(153,129,189);}
它用相同的颜色为所有行着色。有什么可能的解决方案吗?