媒体查询IE

时间:2012-11-06 13:02:07

标签: css css3 media-queries

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

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

file 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>

可能有其他解决方案吗?

1 个答案:

答案 0 :(得分:4)

根据您使用的css3 mediaqueries支持脚本的homepage,它仅支持内联脚本,而不支持外部和导入脚本。