Created
April 6, 2016 08:32
-
-
Save KnightAlex/dd1c2393de99a00fdc65866324a9d376 to your computer and use it in GitHub Desktop.
Device orientation media queries
This file contains hidden or 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
/* portrait */ | |
@media screen and (orientation:portrait) { | |
/* portrait-specific styles */ | |
} | |
/* landscape */ | |
@media screen and (orientation:landscape) { | |
/* landscape-specific styles */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment