乐趣区

Css技巧

移动端横竖屏样式转换

横屏

@media all and (orientation : landscape) {h1{color:red}
}

竖屏

@media all and (orientation : portrait){h1{color:yellow}
}
退出移动版