3
All topics I found regarding media queries grouped are a few years.
With the wide range of CSS3, grouped media queries are now considered safe to use in production?
Do any browsers that support CSS3 fully support grouped media queries? Or would that not always be the case? In this case, which browsers do not support nested media queries?
Nested media query example for illustration:
@media screen and (min-width: 1024px) {
body {
background-color: blue;
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
body {
background-color: red;
}
}
}