为什么以下媒体查询在 Google Chrome (23.0)、Firefox (16.0.2) 和 IE9 浏览器中有效,但在 IE8 中无效?
@media all and (min-width:720px){
/* relevant css in here */
}
为什么以下媒体查询在 Google Chrome (23.0)、Firefox (16.0.2) 和 IE9 浏览器中有效,但在 IE8 中无效?
@media all and (min-width:720px){
/* relevant css in here */
}
IE8不支持媒体查询,如果您想在旧版浏览器中使用该功能,则需要使用像Respond.js这样的 javascript 库
我认为问题在于 IE 不理解媒体查询。
试试这个链接