Answers for "how to give a website a min width in media query"

CSS
51

media query

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

media query in css

@media screen and (min-width: 374px){
   section#rent_sectionn {
    padding: 0 20px !important;
}
 }
Posted by: Guest on November-07-2020

Code answers related to "how to give a website a min width in media query"

Browse Popular Code Answers by Language