CSS2 Media-specific style sheets


BODY {
  color: red;
  background: black;
}

@media handheld {
  BODY {
    color: black;
    background: white;
  }
}