我有幾張桌子,而我只想針對偶數和奇數行:定位奇偶風格特定表ID爲
<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呢? :)
謝謝,不知道 – cevizmx
我給第一個答案得到任何獎勵積分嗎? –
** FGITW依靠!**(西方最快的槍) –