同时定位IE11和屏幕宽度

时间:2019-01-24 19:33:50

标签: css media-queries internet-explorer-11

我需要针对IE11以及特定的断点,因为某些事情在IE11上无法正常运行。我知道编辑所需的CSS,但是我无法找出媒体查询来同时正确定位IE和屏幕尺寸。

我尝试了以下代码以及每个代码的多种变体。

我的问题是,这里出了什么问题,我该如何解决才能起作用?

@media screen and (-ms-high-contrast: active) and (min-width: 1200px),
       screen and (-ms-high-contrast: none) and (min-width: 1200px) {
          .scene-info {
               CSS GOES HERE
       }
}


@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none), screen and (max-width: 991px) {
       .scene-info {
            left: 1px;   
       }
}

1 个答案:

答案 0 :(得分:1)

尝试如下修改您的代码:

argparse

这样的输出:

enter image description here

有关CSS媒体的更多详细信息,请检查@media Rulethis article