Answers for "media queries what is the diferent between max and min"

CSS
34

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 "media queries what is the diferent between max and min"

Browse Popular Code Answers by Language