仅在IE-10及更高版本的浏览器中更改已禁用的select元素的字体颜色 请找到以下html标记:
HTML:
<select disabled="disabled">
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
CSS :
select[disabled='disabled']{
background-color:#FFF;
color: #000;
}
答案 0 :(得分:0)
你can't use conditional comments,所以下一个最好的选择似乎是:
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10+ specific styles go here */
}