Supprimer l'arrière-plan sur des Requêtes de Média

Je veux mon parcours pour aller loin quand un taille de l'écran est remplie.
Voici mon code 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;
    }

Puis quand je l'ai vue sur Google Chrome avec une taille d'écran de 479px; le fond est toujours là..

Voici les Inspecter l'Élément,

Inspecter L'Élément -- 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
}

Ce que je fais mal? La commande est-elle importante?

L'ordre est important, sinon cela ne marchera jamais. Rappelez-vous, la feuille de style en cascade dans la nature.

OriginalL'auteur Jeremi Liwanag | 2013-10-21