Skip to content

Instantly share code, notes, and snippets.

@vedranjaic
Created May 26, 2013 17:44
Show Gist options
  • Save vedranjaic/5653481 to your computer and use it in GitHub Desktop.
Save vedranjaic/5653481 to your computer and use it in GitHub Desktop.
css: Prevent font resize on landscape - iOS/WinMobile
/* prevent font scaling in landscape */
@media screen and (max-device-width:480px) {
html {
-webkit-text-size-adjust: none;
-ms-text-size-adjust:none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment