如何使用CSS确定设备是处于纵向还是横向模式

时间:2013-10-10 06:42:46

标签: css3 responsive-design media-queries landscape-portrait

为了确定屏幕尺寸我正在使用media queries,但我想确定某个设备是否在portrait or landscape mode using CSS中,以便根据屏幕尺寸设置不同的背景图像。

有什么想法?

1 个答案:

答案 0 :(得分:20)

只需为横向和纵向模式编写媒体查询:

/* Portrait */
@media screen and (orientation:portrait) {
/* Portrait styles */
}
/* Landscape */
@media screen and (orientation:landscape) {
/* Landscape styles */
}

link here