nesting media queries
Hey, if i'd like something to occur when the viewport width is 640px or above but below 960px, would it be bad practice to nest media queries like this?
Thanks in advance.
Thanks in advance.
@media (min-width: 640px) {
@media (max-width: 960px) {
...
}
}