1
我想讓Zebra剝離我的表,但它不能正常工作。CSS Zebra剝離不能正常工作
<style>
tr.campaign:nth-of-type(even)
{
background:#e0e0e0;
}
tr.campaign:nth-of-type(odd)
{
background:#f1f1f1;
}
</style>
<table>
<tr class="campaign">
<td rowspan="2">hey</td>
<td>row 1</td>
</tr>
<tr>
<td>row 2</td>
</tr>
<tr class="campaign">
<td rowspan="2">hey</td>
<td>row 3</td>
</tr>
<tr>
<td>row 4</td>
</tr>
</table>
我正在嘗試上面的代碼。實際上,運動類別的行應該在斑馬條上着色,但它也考慮其他行來着色。因此,由於第二個廣告系列類別上方的2行,廣告系列類別的第二行的顏色與廣告系列類別的第1行相同。
問候。