Skip to content

Instantly share code, notes, and snippets.

@leeroybrun
Created January 24, 2014 12:43
Show Gist options
  • Save leeroybrun/8596535 to your computer and use it in GitHub Desktop.
Save leeroybrun/8596535 to your computer and use it in GitHub Desktop.
CSS tricks for iOS web apps
/* 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