@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            .box_a{
                background-color:#eee;
            }
        }    

        另一种写法

        @media all and (-ms-high-contrast:none) {
             .box_a{
                background-color:#eee;
            }
        }

 

二者方法测试均有效

查看原文 >>
相关文章