媒体查询最大宽度和最大设备宽度之间有什么区别?
例如,此网站:
http://8faces .com/ 使用最大宽度。
本教程使用max-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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查这个帖子。 http://www.quirksmode.org/blog/archives/2010/09 /combining_meta.html
check this post. http://www.quirksmode.org/blog/archives/2010/09/combining_meta.html
max-device-width
将针对设备(iphone/ipad),因为max-width
将针对屏幕(浏览器)。希望这有帮助
max-device-width
will target devices(iphone/ipad), asmax-width
will target screens(browsers).Hope this helps