媒体查询 - 在 css 文件还是 html 中重要吗?

发布于 2024-11-05 09:22:20 字数 243 浏览 1 评论 0原文

我想使用媒体查询来改变我的手机和其他移动设备的设计。

看来我可以在我的 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 技术交流群。

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

发布评论

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

评论(1

三生路 2024-11-12 09:22:21

他们是一样的。请查看此链接的“满足媒体查询”部分,了解有关如何介绍它们的更多选择: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/

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