Answers for "media rule, target all browsers smaller than 400px"

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 "media rule, target all browsers smaller than 400px"

Browse Popular Code Answers by Language