Answers for "css @mobile devices"

CSS
51

media query

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

mediaquery for portrate

@media (orientation: portrait) {
  body {
    flex-direction: column;
  }
}
Posted by: Guest on November-09-2020

Code answers related to "css @mobile devices"

Browse Popular Code Answers by Language