Answers for "media query css syntax"

CSS
120

css media queries

@media only screen and (max-width: 1200px){
    /*Tablets [601px -> 1200px]*/
}
@media only screen and (max-width: 600px){
	/*Big smartphones [426px -> 600px]*/
}
@media only screen and (max-width: 425px){
	/*Small smartphones [325px -> 425px]*/
}
Posted by: Guest on July-04-2020
51

media query

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
Posted by: Guest on December-06-2019
-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