Answers for "css for smaller screens"

CSS
51

media query

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

screen sizes for css media

<meta name="viewport" content="width=device-width, initial-scale=1" />
Posted by: Guest on February-04-2021

Browse Popular Code Answers by Language