我正在使用
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { }
用CSS定位IE10和IE11 ,但问题是我想要定位特定的屏幕尺寸,例如
@media (min-width: 980px) and (max-width: 1199px) { .span2{ width: 20px;}}.
所以有什么帮助?
答案 0 :(得分:2)
最后我在这里找到答案:http://browserhacks.com/
@media (min-width: 980px) and (max-width: 1199px) { _:-ms-input-placeholder, :root .span2{ width: 20px;}}