我的问题是关于背景图像。我正在为 iPhone 屏幕设计一个主页,我想为移动版本使用稍微不同的图像。我的媒体查询不在单独的 css 文件中,只是嵌入在 index.html 中。问题...主要的 CSS 图像覆盖了我的查询图像。我检查了额外的括号等。我认为媒体查询优先于主 css?如果我将媒体查询放在 css 链接文件中,我会得到我想要的结果吗?
这是我的主要css代码:
#container
{
background-image:url(images/1000_framec.jpg);
background-repeat:no-repeat;
width:999px;
height:980px;
margin:0 auto;
}
以下是我的媒体查询代码:
@media only screen and max-width 320px {
#container
{
width:98%;
background:url(images/1000_frameo.jpg) no repeat left;
margin-top:80px;
-webkit-background-size:contain;
-moz-background-size:contain;
-o-background-size:contain;
background-size:contain;
}
}