Apply only to IE 11 within media query for screen size

前端 未结 2 1962
臣服心动
臣服心动 2020-12-10 03:10

I currently have following width specific media query.

 @media only screen and (max-width: 1920px) {
    .toggleMultiSelect .filter {
        width: 566px;
          


        
2条回答
  •  Happy的楠姐
    2020-12-10 03:42

    Use the below css inside the media query

    IE 10 and above

    _:-ms-lang(x), .ie10up { 
           property:value; 
        }
    

    IE 11 and above

    _:-ms-fullscreen, :root .CLASS_NAME { 
           property:value; 
         }
    

提交回复
热议问题