3 media queries for iphone portrait, landscape and ipad portrait

前端 未结 5 2091
北海茫月
北海茫月 2021-02-01 11:22

I have tried the different combinations of width & device-width but on the iPhone in landscape this code never turns the background red;

I

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-01 12:13

    i tried this by using Om's solution in a diff. way it worked for me, hope it helps someone

    @media only screen and (max-device-width:1024px) and (orientation: portrait)     {
        /*style*/    
        }
    @media only screen and (max-device-width: 1024px) and (orientation: landscape)  {
        /*style*/
    }
    

提交回复
热议问题