how to Create a media query for mobile screen devices with maximum widths of 480 pixels code example
Example: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}