媒体查询最大宽度和最大设备宽度之间有什么区别?

发布于 2024-12-02 16:51:27 字数 694 浏览 1 评论 0原文

可能的重复:
有什么区别移动网络的 max-device-width 和 max-width 之间?

例如,此网站:

http://8faces .com/ 使用最大宽度

教程使用ma​​x-device-width :

例如:

@media screen and (max-device-width: 480px) {
  .column {
    float: none;
  }
}

它们有什么区别?它们可以在 Android、iOS、iPad 等设备上运行吗?

Possible Duplicate:
What is the difference between max-device-width and max-width for mobile web?

For instance, this website:

http://8faces.com/ uses max-width.

This tutorial uses max-device-width:

Example:

@media screen and (max-device-width: 480px) {
  .column {
    float: none;
  }
}

What's the difference between them? Do they work in Android, iOS, iPad, etc?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

相权↑美人 2024-12-09 16:51:27

max-device-width 将针对设备(iphone/ipad),因为 max-width 将针对屏幕(浏览器)。

希望这有帮助

max-device-width will target devices(iphone/ipad), as max-width will target screens(browsers).

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文