Skip to content

Instantly share code, notes, and snippets.

@hudsonperalta
Created August 28, 2012 01:38
Show Gist options
  • Select an option

  • Save hudsonperalta/3494155 to your computer and use it in GitHub Desktop.

Select an option

Save hudsonperalta/3494155 to your computer and use it in GitHub Desktop.
Landscape Only
<style type="text/css">
#landscape {
display:none;
}
@media all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
#app-container {
display:none;
}
#landscape-only {
display:block;
}
}
</style>
<div id="landscape-only">This web app only supports landscape orientation. Please rotate your iPad.</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment