2

请帮帮我。它在 IE 中不起作用!

 <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
    <link rel="stylesheet" href="styles/global.css">

文件 global.css

body{ background-color:black}
@media screen and (max-width: 650px) {
body{background-color:red;}
}
@media screen and (max-width: 450px) {
body{background-color:green;}
}

但它有效:

 <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<style>
body{ background-color:black}
@media screen and (max-width: 650px) {
body{background-color:red;}
}
@media screen and (max-width: 450px) {
body{background-color:green;}
}
</style>

可能有其他解决方案?

4

1 回答 1

4

根据您使用的css3 mediaqueries support script的主页,它只支持内联脚本,不支持外部和导入脚本。

于 2012-11-06T14:01:40.870 回答