Created
April 16, 2015 09:17
-
-
Save ayamflow/bebf234062c16e0b6937 to your computer and use it in GitHub Desktop.
Cross-browser landscape/orientation in CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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