What is correct media query for IPad Pro?

前端 未结 8 1066
-上瘾入骨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 09:59

    /* Landscape*/
    
    @media only screen and (min-device-width: 1366px) and (max-device-height: 1024px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: landscape)  {}
    
    /* Portrait*/
    @media only screen and (min-device-width: 1024px) and (max-device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: portrait)  {}
    

    Portrait medias query for iPad Pro should be fine as it is.

    Landscape media query for iPad Pro (min-device-width) should be 1366px and (max device-height) should be 1024px.

    Hope this helps.

提交回复
热议问题