我有几个表,我只想针对偶数行和奇数行:
<table class="record">
<tbody>
<tr>
<th scope="col">Score</th>
<th scope="col">Time</th>
</tr>
<tr>
<td>A</td>
<td>1.20</td>
</tr>
<tr>
<td>B</td>
<td>1.35</td>
</tr>
<tr>
<td>C</td>
<td>1.39</td>
</tr>
</tbody>
</table>
我尝试使用我在网上找到的以下代码,但它可以在网站周围的所有表格中使用:
tr:nth-child(even) { background: #666; }
tr:nth-child(odd) { background: #CCC; }
任何建议我如何才能只针对具有“记录”类的表?谢谢你的建议。
编辑:如果这个表在另一个表下作为 td 怎么办?:)