Answers for "media query media types"

CSS
51

media query

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

hegith specific css in media query

/* Exact height */
@media (height: 360px) {
  div {
    color: red;
  }
}

/* Minimum height */
@media (min-height: 25rem) {
  div {
    background: yellow;
  }
}

/* Maximum height */
@media (max-height: 40rem) {
  div {
    border: 2px solid blue;
  }
}
Posted by: Guest on June-22-2020
-2

media query in css

@media screen and (min-width: 374px){
   section#rent_sectionn {
    padding: 0 20px !important;
}
 }
Posted by: Guest on November-07-2020
2

print media query css

@media print { 
 /* All your print styles go here */
 #header, #footer, #nav { display: none !important; } 
}
Posted by: Guest on May-20-2020

Browse Popular Code Answers by Language