Народ, в чем проблема или чего я не понимаю, имеется телефон width: 320px dpr: 1.5 почему у body бэкграунд розовый, а не зеленый? и еще откуда взялось ширина 980? Спасибо.
@media (max-width: 319px) {
body {
background-color: gray;
}
}
@media (min-width: 301px) and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5) {
body {
background-color: green;
}
}
@media (min-width: 769px) and (max-width: 1023px) {
body {
background-color: hotpink;
}
}
@media (min-width: 1025px) {
body {
background: gold;
}
}
/*# sourceMappingURL=style.css.map */