Answers for "phone media query"

CSS
51

media query

@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
4

media query

@media only screen and (max-width: 600px) {
  .class {
    // Your CSS
  }
}
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language