Answers for "Create two empty media queries for tablet (min-width:768px) and desktop (min width:992px) in that order."

CSS
51

media query

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

Code answers related to "Create two empty media queries for tablet (min-width:768px) and desktop (min width:992px) in that order."

Browse Popular Code Answers by Language