Skip to content

Instantly share code, notes, and snippets.

@nonlinear
Created October 12, 2012 22:32
Show Gist options
  • Save nonlinear/3882005 to your computer and use it in GitHub Desktop.
Save nonlinear/3882005 to your computer and use it in GitHub Desktop.
CSS: media query for orientation
@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
}
@media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment