Example: CSS Between Media Query Posted by wp.edmunds | Sep 13, 2018 | CSS/Design | 1 | @media only screen and (min-width: 300px) and (max-width: 500px) { .myClass { display: none; } } In the example above: apply the rules when the screen width is between 300 and 500px.