css media quere 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) {
.class {
// Your CSS
}
}
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
@media only screen and (max-width: 600px) {
.class {
// Your CSS
}
}