All the topics I have found in relation to media grouped queries are for a few years.
With the wide range of CSS3, are grouped queries of media queries now considered safe to use in production?
Does any browser that supports CSS3 fully support grouped media queries? Or would not that 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;
}
}
}