CSS 媒体查询在 IE 9 中不起作用
我在设计中包含了一些媒体查询,以根据浏览器的宽度更改页面某些元素的宽度。查询如下所示:
@media screen and (min-width:1024px)
@media screen and (max-width:1024px)
Chrome、Safari 和 Firefox 运行良好,只有 IE 是个问题。我知道 IE 9 之前的所有版本都不支持此功能,但它们在 IE 9 中根本不起作用。可能是什么问题?
I have included some media queries in my design to change the width of some elements of the page based on the browser's width. The queries look like this:
@media screen and (min-width:1024px)
@media screen and (max-width:1024px)
Chrome, Safari and Firefox work great, only IE is a problem. I know that all versions prior to IE 9 don't support this feature, but they don't work in IE 9 at all. What might be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你是否开启了兼容模式?
Do you have compatibility mode turned on?
确保您有正确的 DOCTYPE 声明。
强烈建议网站使用 HTML5 文档类型,以便支持最广泛的已建立和新兴标准(在本例中为 CSS3),以及最广泛的 Web 浏览器:
< /代码>
Make sure you have right DOCTYPE declaration.
It's strongly recommended that websites use the HTML5 document type in order to support the widest variety of established and emerging standards (in this case: CSS3), as well as the broadest range of web browsers:
<!DOCTYPE html>
使用以下条件
代替
并确保
min-width
为1px
,因为 IE9 不会拾取0px
use the following conditions
instead of
and make sure
min-width
is1px
as IE9 doesn't pickup0px
不幸的是,任何版本的 IE 都不支持 min-width。因此,如果您使用此约定:
它将全部忽略。
参考。
Unfortunately min-width is simply not supported in any version of IE. So if you use this convention:
It will ignore it all.
Reference.