Skip to content

Instantly share code, notes, and snippets.

@HituziANDO
Created August 14, 2013 15:10
Show Gist options
  • Save HituziANDO/6231977 to your computer and use it in GitHub Desktop.
Save HituziANDO/6231977 to your computer and use it in GitHub Desktop.
HTML長押しで出てくるAlertView等を封印します。
* {
/* prevent callout to copy image, etc when tap to hold */
-webkit-touch-callout: none;
/* prevent webkit from resizing text to fit */
-webkit-text-size-adjust: none;
/* make transparent link selection, adjust last value opacity 0 to 1.0 */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
/* prevent copy paste, to allow, change 'none' to 'text' */
-webkit-user-select: none;
}
input {
-webkit-user-select: text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment