Created
January 24, 2014 12:43
-
-
Save leeroybrun/8596535 to your computer and use it in GitHub Desktop.
CSS tricks for iOS web apps
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
/* Disable selection on iOS devices */ | |
* { | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; /* Disable selection/copy in UIWebView */ | |
} | |
/* Smooth scrolling */ | |
.container { | |
overflow: scroll; | |
-webkit-overflow-scrolling: touch; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment