Answers for "how to put min and max width with media query"

CSS
33

media query min and max

/* Max-width */
@media only screen and (max-width: 600px)  {...}

/* Min-width */
@media only screen and (min-width: 600px)  {...}

/* Combining media query expressions */
@media only screen and (max-width: 600px) and (min-width: 400px)  {...}
Posted by: Guest on December-06-2019
0

media query min and max width

@media screen and (max-width: 992px) {
  body {
    background-color: blue;
  }
}
Posted by: Guest on May-24-2021

Code answers related to "how to put min and max width with media query"

Browse Popular Code Answers by Language