Media Queries - CSS only for iPhone landscape

后端 未结 4 1986
抹茶落季
抹茶落季 2021-02-01 22:59

Are the same methods used to write CSS only for iPhone in landscape mode?

4条回答
  •  -上瘾入骨i
    2021-02-01 23:20

    Yes, sure. Check: http://www.w3.org/TR/css3-mediaqueries/#orientation

    @media all and (orientation:portrait) { … }
    @media all and (orientation:landscape) { … }
    

    If you want to target iphone only you have to add the resolution or the dppx density to these MQ.

提交回复
热议问题