All the threads I've found regarding nested media queries are a few years old.
With the wide spread of CSS3, are nested media queries now considered safe to use in production?
Would any browser that supports CSS3 fully support nested media queries? Or would that not always be the case? In that case, which browsers do not support nested media queries?
EDIT:
Example of a nested media query for illustration:
@media screen and (min-width: 1024px) {
body {
background-color: blue;
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
body {
background-color: red;
}
}
}