Targeting IE 11 in css not working

前端 未结 2 1182
既然无缘
既然无缘 2021-02-14 09:06

I\'m trying to fix a tiny layout issue in IE11 where slider pip jumps out of its place (it\'s fine in the rest of major browsers)

I\'ve added media query to stylesheet (

2条回答
  •  故里飘歌
    2021-02-14 09:46

    The following should solve your problem. The idea is to apply CSS specific to IE.

    @media all and (-ms-high-contrast:active), all and (-ms-high-contrast:none) {
     //Your CSS
    }
    

提交回复
热议问题