Answers for "css media queries mobile devices only"

CSS
59

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 smartphone only

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

Code answers related to "css media queries mobile devices only"

Browse Popular Code Answers by Language