Answers for "media query css for particular width"

CSS
51

media query

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

media query

@media only screen and (max-width: 800px) {
  body {
    background-color: ; /*your color*/
  }
}
Posted by: Guest on November-04-2020
0

minimum width of different devices in html

<meta name="viewport" content="width=device-width,initial-scale=1">
Posted by: Guest on April-30-2020

Code answers related to "media query css for particular width"

Browse Popular Code Answers by Language