仅在IE8中css媒体查询问题

时间:2012-11-15 15:56:10

标签: css media-queries

为什么以下媒体查询在Google Chrome(23.0),Firefox(16.0.2)和IE9浏览器中有效,但在IE8中却无效?

@media all and (min-width:720px){
  /* relevant css in here */
}

2 个答案:

答案 0 :(得分:4)

IE8 doesn't support media queries,如果您想在旧浏览器中使用该功能,则需要使用Respond.js等javascript库

答案 1 :(得分:1)

我认为问题在于IE不会理解媒体查询。

试试这个link

相关问题