Kevin Powell - CommunityKP-C
Kevin Powell - Community•2y ago•
2 replies
snxxwyy

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?
@media (min-width: 640px) {
  @media (max-width: 960px) {
    ...
  }
}

Thanks in advance.
Was this page helpful?