Skip to content

Instantly share code, notes, and snippets.

@KnightAlex
Created April 6, 2016 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KnightAlex/dd1c2393de99a00fdc65866324a9d376 to your computer and use it in GitHub Desktop.
Save KnightAlex/dd1c2393de99a00fdc65866324a9d376 to your computer and use it in GitHub Desktop.
Device orientation media queries
/* 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