What is correct media query for IPad Pro?

前端 未结 8 1085
-上瘾入骨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:12

    This worked for me

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

提交回复
热议问题