使用媒体查询无法正常工作的IE 11样式

时间:2016-12-15 20:05:58

标签: css css3 internet-explorer-11

我遇到的问题是,在下面的代码中,我必须在我的样式部分使用“!important”标记,并且在调整大小时我需要更改它,我已经嵌套了我的媒体查询,但我不能让它在嵌套设置上收到特殊说明。

 @@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #explorerStyle {
        width: 100%;
        left: -10px;
        margin-top: 36px !important;
        display: table;
        margin: 0 auto;
    }

    @@media screen and (min-width: 992px) and (max-width:1199px) {
        #explorerStyleSpan {
            margin-top: 16px !important; <<<<<< Issue is here
        }
    }
}

0 个答案:

没有答案