Здравствуйте! Есть необходимость отключить фон (или изменить его) при входе с мобильного устройства...
Написал вот так
@media screen{
body {
margin:0px;
/*height: 100% !important;*/
background: url(design/background.jpg) no-repeat;
background-position: bottom;
background-attachment: fixed;
background-color: black;
background-size: 101% 101%; }
}
@media screen and (max-device-width: 480px) {
body {
margin:0px;
/*height: 100% !important;*/
background-position: bottom;
background-attachment: fixed;
background-color: black;
background-size: 100% 100%; }
}
Не помогает...