在我的项目中,我正在尝试使用selectivizr使下面的 css 在 IE8 中工作
thead>tr:first-child>th:last-child {
color: red;
}
tbody>tr:first-child>td:last-child {
color: red;
}
如Selectivizr网站所述,我在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]-->
我仍然不能让伪选择器在 IE8 中工作first-child
。last-child
我正在使用以下代码将所有版本的 IE 切换到 IE8。(仅供参考)。
<meta http-equiv="X-UA-Compatible" content="IE=8" >