Nested Media Queries
You can nest media queries in native CSS, as long as you’re doing it from the root:
@media not print {
@media (min-width: 0) {
p {
background: blue;
}
}
}
You can nest media queries in native CSS, as long as you’re doing it from the root:
@media not print {
@media (min-width: 0) {
p {
background: blue;
}
}
}