Skip to content

Instantly share code, notes, and snippets.

@jschoolcraft
Forked from danro/phonegap.css
Created January 9, 2012 21:36
Show Gist options
  • Save jschoolcraft/1585077 to your computer and use it in GitHub Desktop.
Save jschoolcraft/1585077 to your computer and use it in GitHub Desktop.
CSS Useful PhoneGap Properties
* {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
margin: 0;
padding: 0;
border: 0;
}
html, body {
height:100%;
overflow:hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment