css – 如何使用媒体查询定位平板电脑而不是IE9

前端之家收集整理的这篇文章主要介绍了css – 如何使用媒体查询定位平板电脑而不是IE9前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我发现IE9正在为我的网站采用平板电脑样式.
@media (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait),(min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)
{
    /* tablet styles */
}

当浏览器的宽度为1024px时,上述媒体查询将应用于IE9.

做了一些研究之后,我发现了以下问题/解决方案,它提供了解释为什么会发生这种情况的原因.

Media query not working in IE9

From what I can tell,it comes down to IE9 not interpreting
“min-device-width” and “max-device-width”.

According to 07001 it does
not support those properties,only “min-width” and “max-width”.

In addition,07002
states that the browser is supposed to ignore properties that it does
not recognize. Not so with IE9 it seems.

我也发现了这个问题:Common breakpoints for media queries on a responsive site但它没有给我一个解决方案.

如何将样式表仅应用于平板电脑而不是IE9等桌面浏览器,宽度为1024px?

解决方法

您需要在< head>中添加此元标记你的文件
<Meta name="viewport" content="width=device-width,initial-scale=1.0">

然后在你的CSS中你可以替换:

> min-device-width with min-width> max-device-width with max-width.

原文链接:https://www.f2er.com/css/215740.html

猜你在找的CSS相关文章