media query css explained code example

Example 1: media query

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

Example 2: media query

@media only screen and (max-width: 600px) {
  .class {
    // Your CSS
  }
}

Example 3: media query

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

Example 4: 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:

Misc Example