我在css中使用这样的东西
input[type=radio]:checked + label { color:#121212 }
问题是此检查的属性在Internet Explorer 8和Internet Explorer 7中不起作用。
如果我这样使用
input[type=radio] + label { color:$888888 }
它工作正常
请告诉我另一件事
最佳答案
您可以使用http://selectivizr.com/ JS。在较旧版本的IE中支持css3选择器。
关于css - 为什么CSS中的选中属性在IE-7中不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10927129/