The In-between
Combining media query options is powerful. For example, by combining min-width
and max-width
in a query, we can specify styles that we want to apply only between two values.
@media (min-width: 30em) and (max-width: 60em) {
}
Combining media query options is powerful. For example, by combining min-width
and max-width
in a query, we can specify styles that we want to apply only between two values.
@media (min-width: 30em) and (max-width: 60em) {
}