Skip to content

Instantly share code, notes, and snippets.

@bleathem
Created June 13, 2012 20:50
Show Gist options
  • Select an option

  • Save bleathem/2926443 to your computer and use it in GitHub Desktop.

Select an option

Save bleathem/2926443 to your computer and use it in GitHub Desktop.
Simple CSS media detection
/* portrait screen width */
@media screen and (max-device-width: 480px) {
.portrait {
}
.landscape {
display:none;
}
}
/* landscape device widths */
@media screen and (min-device-width: 481px) {
.portrait {
display:none;
}
.landscape {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment