CSS media queries: max-width OR max-height

When writing a CSS media query, is there any way you can specify multiple conditions with “OR” logic?

I’m attempting to do something like this:

/* This doesn't work */
@media screen and (max-width: 995px OR max-height: 700px) {
  ...
}

5 s
5

Leave a Comment