移动端横竖屏样式转换
横屏
@media all and (orientation : landscape) {h1{color:red}
}
竖屏
@media all and (orientation : portrait){h1{color:yellow}
}
横屏
@media all and (orientation : landscape) {h1{color:red}
}
竖屏
@media all and (orientation : portrait){h1{color:yellow}
}