media queries syntax code example

Example 1: 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]*/
}

Example 2: media query

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}

Example 3: media query

@media only screen and (max-width: 600px) {
  body {
    // Change size, placement of elements
  }
}

Example 4: print media query css

@media print { 
 /* All your print styles go here */
 #header, #footer, #nav { display: none !important; } 
}

Example 5: media query

@media (max-height : 800px){ /* from 0 to 800 px max height applies */
  p{
    font-size:10px
  }
}

Example 6: media query in html style

span { background-image: url(particular_ad.png); }

@media (max-width: 300px) {
    span { background-image: url(particular_ad_small.png); }
}

Tags:

Css Example