我的移动版本(最大宽度:479px)没有显示 #111 作为背景颜色。相反,#000 显示为背景颜色。请帮我。
@media only screen and (max-width: 1024px) {
body{
background-color:#ff0000;
}
}
@media only screen and (max-width: 767px)
{
body{
background-color:#000;
}
}
@media only screen and (max-width: 479px)
{
body{
background-color:#111;
}
}