Skip to content

Instantly share code, notes, and snippets.

@collingo
Created March 11, 2012 20:24
Show Gist options
  • Save collingo/2018095 to your computer and use it in GitHub Desktop.
Save collingo/2018095 to your computer and use it in GitHub Desktop.
Touch screen webpage CSS
* {
/* hides the cursor */
cursor:none !important;
/* prevent content selection */
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
/* make content highlight colour transparent*/
::selection { /* Safari & Chrome */
background:transparent;
}
::-moz-selection { /* Firefox */
background:transparent;
}
/* hide scrollbars */
html {
width:100%;
height:100%;
overflow:hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment