Answers for "how to Create a media query for mobile screen devices with maximum widths of 480 pixels"

CSS
51

media query

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
Posted by: Guest on December-06-2019

Code answers related to "how to Create a media query for mobile screen devices with maximum widths of 480 pixels"

Browse Popular Code Answers by Language