当jquery mobile中的方向改变时,如何将我的标题置于左侧

时间:2012-01-25 04:54:10

标签: jquery-mobile

当方向更改为横向模式和我的整体时,我想将标题放在左侧。 我怎样才能做到这一点?

感谢您宝贵的时间。

1 个答案:

答案 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 */
}