为什么以下媒体查询在Google Chrome(23.0),Firefox(16.0.2)和IE9浏览器中有效,但在IE8中却无效?
@media all and (min-width:720px){
/* relevant css in here */
}
答案 0 :(得分:4)
IE8 doesn't support media queries,如果您想在旧浏览器中使用该功能,则需要使用Respond.js等javascript库
答案 1 :(得分:1)
我认为问题在于IE不会理解媒体查询。
试试这个link