Ipad和Android平板电脑的媒体查询问题

时间:2013-07-01 08:58:49

标签: css css3

我遇到了Ipad和Android平板电脑媒体查询的问题,特别是在横向模式下。

我需要一些有关正确媒体查询的帮助。

这是我正在使用的媒体查询:

Android横向:

@media only screen and (min-device-width : 800px) and (max-device-width: 1280px) and (orientation : landscape) {}

Ipad Landscape:

@media only screen and (min-device-width : 768px) and (max-device-width: 1024px) and (orientation : landscape) {}

2 个答案:

答案 0 :(得分:0)

使用

@media (min-width : 800px) and (max-width: 1280px) {}
@media (min-width : 768px) and (max-width: 1024px) {}

供参考

/* Large desktop */
@media (min-width: 1200px) { ... }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }

/* Landscape phones and down */
@media (max-width: 480px) { ... }

答案 1 :(得分:0)

这项适用于android标签的工作:

@media(min-device-width:600px)和(max-device-width:1024px)和(orientation:landscape){}

@media(min-device-width:600px)和(max-device-width:1024px)和(orientation:portrait){}