What is correct media query for IPad Pro?

前端 未结 8 1047
-上瘾入骨i
-上瘾入骨i 2020-12-23 09:32

I have these two but they are not working. I\'m simulating in Chrome

    /* Landscape*/

    @media only screen and (min-device-width: 1024px) and (max-devic         


        
8条回答
  •  醉梦人生
    2020-12-23 10:10

    I can't guarantee that this will work for every new iPad Pro which will be released but this works pretty well as of 2019:

    @media only screen and (min-width: 1024px) and (max-height: 1366px)
        and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) {
        /* ... */
    }
    

提交回复
热议问题