nth-child(n)后代选择器IE8不兼容问题
作者:互联网
使用jQuery解决方案:
if (navigator.appName === 'Microsoft Internet Explorer') { //判断是否是IE浏览器 if(navigator.userAgent.match(/Trident/i)&&navigator.userAgent.match(/MSIE 8.0/i)) { $('p:nth-child(2)').css('color','blue'); //$('p:nth-of-type(2)').css('color','blue'); }
}
第二种方法:
div p:first-child {color:red} 给第一个加颜色 div p:first-child+p { color:blue; } 给第二个加颜色 div p:first-child+p+p { color:yellow; } 给第三个加颜色
标签:blue,IE8,兼容问题,color,nth,div,child,navigator,选择器 来源: https://www.cnblogs.com/surplus/p/15154779.html