Created
May 17, 2013 19:28
-
-
Save ridgehkr/5601387 to your computer and use it in GitHub Desktop.
Fix an orientation scale bug in iOS. MUST come last in your CSS // ht @jpamental
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Make sure this is last - helps correct for an orientation scale bug in iOS */ | |
@media screen and (orientation:landscape) and (device-width:320px) and (device-height: 480px) { | |
body { | |
width: 480px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment