私のプロジェクトでは、selectivizrを使用して以下の css を IE8 で動作させようとしています。
thead>tr:first-child>th:last-child {
color: red;
}
tbody>tr:first-child>td:last-child {
color: red;
}
Selectivizrの Web サイトに記載されているように、 JSFiddleの「外部リソース」に以下のコードを追加しました。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script type="text/javascript" src="https://github.com/keithclark/selectivizr/blob/master/selectivizr.js"></script>
<noscript><link rel="stylesheet" href="[fallback css]" /></noscript>
<![endif]-->
それでも、IE8first-child
で疑似セレクターを作成できません。last-child
次のコードを使用して、IE のすべてのバージョンを IE8 に切り替えています。(参考までに)。
<meta http-equiv="X-UA-Compatible" content="IE=8" >