媒体查询 - 在 css 文件还是 html 中重要吗?
我想使用媒体查询来改变我的手机和其他移动设备的设计。
看来我可以在我的 css 文件中包含以下内容:
@media handheld and (max-width: 480px),
screen and (max-device-width: 480px) {
}
或者,我可以在我的页面 html 中包含类似的内容作为 CSS 文件链接的一部分。这两种方法有区别还是结果相同? 谢谢
I want to use media queries to alter my design for phones and other mobile devices.
It seems I can either have the following within my css file:
@media handheld and (max-width: 480px),
screen and (max-device-width: 480px) {
}
Or, I can have something similar as part of the link to the CSS file, in my page html. Is their a difference between these two methods or is the result the same?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们是一样的。请查看此链接的“满足媒体查询”部分,了解有关如何介绍它们的更多选择:http://www.alistapart.com/articles/responsive-web-design/
They are the same. Check the "Meet the media query" section of this link for even more choices on how to introduce them: http://www.alistapart.com/articles/responsive-web-design/