奇数行と偶数行を異なる色で区別するためのCssコードがあります
.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>
私の問題は、クラス属性 .historyLog i.ie を使用して Css を適用すると
.historyLog tr:nth-child(odd) td {
background-color:blue;
}
IE8はそれを実行せず、偶数または奇数に関係なく、すべての行で同じ色が得られます。しかし、テーブルのクラス属性を使用せずにcssを適用すると
tr:nth-child(odd) td {
background-color:blue;
}
次に、IE8は奇数偶数行で異なる色で実行します。テーブルのクラス属性を使用して、IE8が奇数行と偶数行を異なる色で表示する方法を教えてください。