Requêtes multimédias CSS avec des opérateurs logiques

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

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