Answers for "html media queries container width"

CSS
59

media queries screen width

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

media queries css responsive max width

@media only screen and (max-width: size in px) {
  All of your css here
}
Posted by: Guest on March-11-2021

Browse Popular Code Answers by Language