What Does This Code Dop Pre Langcss Cssfilehk1stylecode Media #440
What does this code do? <pre><code class="language-css">Code: @media only screen and (max-width: 500px) { body { background-color: lightblue; } } </code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs105 CSS (Cascading Style Sheets).
It can also be found in
gs gs105 CSS3 Fundamentals, Transitions & Animations - CSS3 Animation with Responsive Web Design - Quiz No.1.
What does this code do?
Code: @media only screen and (max-width: 500px) { body { background-color: lightblue; } }
If the browser window is smaller than 500px, the background color will change to lightblue:
If the browser window is larger than 500px, the background color will change to lightblue:
The background color will change to lightblue
Nothing happens