不能以特定的屏幕比例定位IE10和IE 11 css

时间:2014-10-30 13:03:42

标签: html css

我正在使用

@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;}}.

所以有什么帮助?

1 个答案:

答案 0 :(得分:2)

最后我在这里找到答案:http://browserhacks.com/

@media (min-width: 980px) and (max-width: 1199px) { _:-ms-input-placeholder, :root .span2{  width: 20px;}}