Dup Ver Goto 📝

Example CSS Media Queries

PT2/lang/css/media css media query does not exist
To
27 lines, 67 words, 538 chars Page 'MediaQueries_01' does not exist.
@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
@media screen and (max-width: 600px) {
  div.example {
    display: none;
  }
}
@media screen and (min-width: 400px) {
  body {
    background-color: lightgreen;
  }
}

@media screen and (min-width: 800px) {
  body {
    background-color: lavender;
  }
}
<link rel="stylesheet" media="screen and (min-width: 900px)" href="widescreen.css">
<link rel="stylesheet" media="screen and (max-width: 600px)" href="smallscreen.css">