Answers for "@media only screen and (max-width: 800px)"

CSS
51

media query

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

@media only screen and (min-width : 1279px) and (max-width : 1400px)

@media only screen and (min-width: 200px) and (max-width: 767px) and (orientation : portrait) {
        //Put your CSS here for 200px to 767px width devices (cover all mobile portrait width //        
  }
Posted by: Guest on September-12-2021

Code answers related to "@media only screen and (max-width: 800px)"

Browse Popular Code Answers by Language