What does this code do?
Code: @media only screen and (max-width: 500px) { body { background-color: lightblue; }}

What does this code do?

Code: @media only screen and (max-width: 500px) { body { background-color: lightblue; }}
Correct Answer If the browser window is smaller than 500px, the background color will change to lightblue:

Related Questions

What does this code do?
Code:@media only screen and (orientation: landscape) { body { background-color: lightblue; }}