特定の画面サイズになったときに背景を消したい。これが私のCSSコードです..
@media only screen and (min-width: 0px) and (max-width: 479px) {
.videohome { background-image: none; background-color:#fefefe; }
}
.videohome {
background: url(images/extras/homevideobg.png) repeat-x #e6e6e6;
}
次に、画面サイズ479pxのGoogle Chromeで表示すると; 背景はまだあります..
これが検査要素です。
要素の検査 -- Google Chrome
www.mysite.com/media="all"
.videohome {
background: url(images/extras/homevideobg.png) repeat-x #e6e6e6;
}
___________________________________
www.mysite.com/media="all"
@media only screen and (max-width: 479px) and (min-width: 0px)
.videohome {
background-image: none; <-- this part is Striked Through
background-color: #fefefe; <-- this part is Striked Through
}
私が間違っているのは何ですか?順番は重要ですか?