当方向更改为横向模式和我的整体时,我想将标题放在左侧。 我怎样才能做到这一点?
感谢您宝贵的时间。
答案 0 :(得分:0)
在CSS中使用媒体查询来实现这一目标。代码示例:
@media screen and (orientation:portrait) {
/* Use CSS here to align header to top */
}
@media screen and (orientation:landscape) {
/* Use CSS here to align header to left */
}