Answers for "how to write a media query for mobile and tablet"

CSS
66

media query for mobile view 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

Code answers related to "how to write a media query for mobile and tablet"

Browse Popular Code Answers by Language