What is a Media Query?
Media query is a CSS technique introduced in CSS3.
If the browser tab is 600px or smaller, the div background color will be red:
@media only screen and (max-width: 600px)
{
div
{
background-color: red;
}
}