媒体查询手机屏幕横屏竖屏

/*手机横屏时执行*/
@media screen and (orientation:landscape){
    .txtle{
        color: red
    }
}
 
/*手机竖屏时执行*/
@media screen and (orientation:portrait){
    #wrap{
        display:none;
    }
}

 

posted @ 2019-01-07 14:15  你的名字~  阅读(275)  评论(0编辑  收藏  举报