我有CSS代碼用於區分奇數和偶數通過不同的顏色CSS3在IE8奇甚至用不同的顏色
.historyLog tr:nth-child(odd) td {
background-color:blue;
}
.historyLog tr.odd td{
background-color: blue;
}
.historyLog tr:nth-child(even) td {
background-color:orange;
}
.historyLog tr.even td{
background-color: orange;
}
行和具有類表中的行.historyLog
<table class="historyLog">
<tr><td></td></tr>
<tr><td></td></tr>
</table>
問題與我是當我應用Css使用class屬性.historyLog i.ie
.historyLog tr:nth-child(odd) td {
background-color:blue;
}
IE8不會執行它並且wh在我將得到的所有行是相同的顏色,無論是偶數還是奇數。但是,如果我申請的CSS不使用表的類屬性即
tr:nth-child(odd) td {
background-color:blue;
}
那麼IE8執行它在奇甚至用不同的色彩行。 請給我答案,以便IE8如何使用表的class屬性以不同顏色顯示奇數行和偶數行。
可能的複製...... http://stackoverflow.com/q/4742450/415057 – codef0rmer