Skip to content

Instantly share code, notes, and snippets.

@verteb
Created June 12, 2013 13:57
Show Gist options
  • Save verteb/5765504 to your computer and use it in GitHub Desktop.
Save verteb/5765504 to your computer and use it in GitHub Desktop.
Mobile : Prevent IOS Landscape Zoom
/* iPhone */
@media only screen and (width:320px) and (device-width:320px) and (device-height:480px) and (orientation: landscape) {
body {
-webkit-transform: scale(0.667);
-webkit-transform-origin: top right;
position: absolute;
right: 0;
top: 0;
width: 480px;
}
}
/* iPad */
@media only screen and (width:768px) and (device-width:768px) and (device-height:1024px) and (orientation: landscape) {
body {
-webkit-transform: scale(0.75);
-webkit-transform-origin: top right;
position: absolute;
right: 0;
top: 0;
width: 1024px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment