Answers for "cell phone size media query"

CSS
66

phone media query css

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

Media query Tablet and smaller

@media all and (max-width: 980px) {
 
}
Posted by: Guest on November-30-2021

Browse Popular Code Answers by Language