1

我正在使用以下媒体查询。这些中的任何一个都针对 Android 平板电脑吗?我正在尝试为 Android 平板电脑(7 英寸和 10 英寸)设计横向和纵向。

这些查询会处理这个问题,还是我需要不同的目标来支持 Android 平板电脑?

桌面@media all and (max-width: 1024px)

Apple iPad @media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:景观)

移动设备 @media all and (max-width: 767px) @media all and (max-width: 600px) @media all and (max-width: 480px)

4

1 回答 1

0

还有另一个帖子,里面有很多有价值的答案,可以在这里找到!

一个答案陈述了以下查询:

@media (min-width:320px) { /* smartphones, iPhone, portrait 480x320 phones */ }
@media (min-width:481px) { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
@media (min-width:641px) { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ }
@media (min-width:961px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }
于 2014-09-18T11:52:25.807 回答