Answers for "mobile device css media queries"

CSS
51

media query for mobile view css

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

media query phone

@media (max-width: 640px) {
/* CSS mobile ici */
}
Posted by: Guest on June-04-2021

Code answers related to "mobile device css media queries"

Browse Popular Code Answers by Language