Skip to content

Instantly share code, notes, and snippets.

@astockwell-ps
Created April 27, 2012 00:27
Show Gist options
  • Save astockwell-ps/2504468 to your computer and use it in GitHub Desktop.
Save astockwell-ps/2504468 to your computer and use it in GitHub Desktop.
CSS: iOS Orientation/Zoom Solved
/* Via http://css-tricks.com/forums/discussion/13461/landscape-orientation/p1 */
<meta name="viewport" content="width=device-width; initial-scale=1" />
<!-- Add "maximum-scale=1" to fix the weird iOS auto-zoom bug on orientation changes. -->
@media (max-device-width: 480px) and (orientation: landscape) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment