Media Query Screen Range With Operators - Short And Easy

amarendrasharma

Amarendra Sharma

Posted on February 22, 2023

Media Query Screen Range With Operators - Short And Easy

In order to write a media query, we use the @media rule, followed by a media type and a set of features that describe the conditions under which the styles will be applied.

The media type can be either screen or print, and the features can include things like screen width, orientation, resolution, and more.

For example, if we wanted to target devices with a screen width between 420px and 720px, we can use the following media query:

@media (min-width: 420px) and (max-width: 720px) {
  /* Styles for devices with a screen width between 420px and 720px */
}
Enter fullscreen mode Exit fullscreen mode

Alternatively, we can use comparison operators to achieve the same result

@media (420px <= width <= 720px) {
    /* Styles for devices with a screen width between 420px and 720px */
  }
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
amarendrasharma
Amarendra Sharma

Posted on February 22, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related