media queries css wit logical operators

35

@media (min-width: 600px) and (max-width: 800px) {
  html { background: red; }
}

@media (max-width: 600px), (min-width: 800px) {
  html { background: red; }
}

Comments

Submit
0 Comments