3 media queries for iphone portrait, landscape and ipad portrait

前端 未结 5 2092
北海茫月
北海茫月 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条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 11:51

    Media queries also support device orientation. You should try that

    @media screen and (orientation:portrait) {
        /* Portrait styles */
    }
    
    @media screen and (orientation:landscape) {
        /* Landscape styles */
    }
    

    You can also combine them with width like so

    @media screen and (max-device-width : 320px) and (orientation:portrait) {
    
    }
    

提交回复
热议问题