テーブルを与えられた
<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);}
すべての行を同じ色で色付けします。これに対する可能な解決策はありますか?