Skip to content

Instantly share code, notes, and snippets.

@jackz3
Created June 17, 2012 15:28
Show Gist options
  • Save jackz3/2944853 to your computer and use it in GitHub Desktop.
Save jackz3/2944853 to your computer and use it in GitHub Desktop.
check orientation using media query
@media screen and (orientation:portrait) {
#land{display:none;}
#port{width:320px; margin: 20px auto;}
}
@media screen and (orientation:landscape) {
#port{display:none;}
#land{width:90%; margin: 20px 5%;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment