Answers for "media query css width and height"

CSS
51

media query

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

how to set media query for both width and height in css

@media (min-height: 768px) and (max-height: 768px) and (min-width: 1366px) and (max-width: 1366px) { ... }
Posted by: Guest on July-11-2021
1

css media screen

@media (max-width: 991px){
    .mobile{
        display: block;
    }
}
Posted by: Guest on October-30-2020

Code answers related to "media query css width and height"

Browse Popular Code Answers by Language