Skip to content

Instantly share code, notes, and snippets.

@ayamflow
Created April 16, 2015 09:17
Show Gist options
  • Save ayamflow/bebf234062c16e0b6937 to your computer and use it in GitHub Desktop.
Save ayamflow/bebf234062c16e0b6937 to your computer and use it in GitHub Desktop.
Cross-browser landscape/orientation in CSS
landscape() {
@media screen and (min-aspect-ratio: 13/9) { block; }
}
portrait() {
@media screen and (max-aspect-ratio: 13/9) { block; }
}
// http://blog.abouthalf.com/development/orientation-media-query-challenges-in-android-browsers/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment