0

有一个相关的问题: iPad 的媒体查询(横向)也适用于三星 Galaxy Tab 2(横向)

我的问题是什么媒体查询可以让 Android Samsung Galaxy Tab 2 10.1(Chrome 浏览器 18)上的 Chrome 浏览器被检测为纵向模式。

我目前正在使用:

@media all and (min-width: 479) and (max-width: 1199) and (max-device-width:1199px and (orientation: portrait)

但它不起作用。它将在 Android 网络浏览器上运行,但一旦您将其翻转为横向模式然后再返回纵向模式,它将无法运行。它仅在您以纵向模式加载页面时才有效。

4

3 回答 3

0

我遇到了同样的问题,我发现 Galaxy Tab 2 10.1 的实际分辨率为 2560px x 1600px,通过使用这些 px 值我能够提取正确的样式表。

于 2013-10-14T23:34:46.130 回答
0

这适用于三星 Galaxy Tab 10.1

@media only screen and (min-width: 800px) and (max-height: 1280px) and 
(orientation : portrait){
    /* Your code here */
}

@media only screen and (min-width: 1280px) and (max-height: 800px) and 
(orientation : landscape){
    /* Your code here */
}
于 2020-02-21T05:10:40.250 回答
0
/* For Media Query for Tablets Ipads Portrait Mode */
@media (min-width:768px) and (max-width:1024px){
/*CSS HERE*/
}
于 2019-06-20T06:30:59.577 回答