media qury code example
Example 1: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 2: media query
@media only screen and (max-width: 600px) {
body {
// Change size, placement of elements
}
}
Example 3: media query
@media only screen and (max-width: 800px) {
body {
background-color: ; /*your color*/
}
}