Skip to content

Instantly share code, notes, and snippets.

@kogakure
Created October 4, 2013 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kogakure/6822967 to your computer and use it in GitHub Desktop.
Save kogakure/6822967 to your computer and use it in GitHub Desktop.
CSS: Prevent font resizing on the iPhone.
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
body {
-webkit-text-size-adjust: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment