Answers for "css3 media queries to determine smartphone orientation"

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 Portrait

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

Browse Popular Code Answers by Language