HomeTricks Responsive Web Design - Media Queries bySharecodepoint -May 18, 2020 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; } } Tags: Tricks Tutorials Facebook Twitter