`
endual
  • 浏览: 3520112 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

css 横屏幕 竖屏幕开发

    博客分类:
  • css
 
阅读更多


|
字号
 订阅

 
 

如何区分横屏和竖屏, 在CSS中?

//竖屏
Css代码 

@media screen and (orientation:portrait) {
    div {
        background-color:red;
    }
}

//横屏
Css代码 
@media screen and (orientation:landscape) {  
    div {  
        background-color:red;  
    }  

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics