With Sass, I can use nested media queries:
.selector
@media (min-width: 100px)
@media (max-width: 200px)
color: whiteAnd it combines all media queries with and:
@media (min-width: 100px) and (max-width: 200px) {
.selector {
color: white;
}
}But I cannot use this trick to combine media queries with , to get this:
@media (min-width: 100px), (max-width: 200px) {
.selector {
color: white;
}
}