Skip to content

Instantly share code, notes, and snippets.

@nguyenDalex
Last active July 24, 2020 17:52
Show Gist options
  • Save nguyenDalex/3a4c90bec1154ebe17b7ab4026aa4a2b to your computer and use it in GitHub Desktop.
Save nguyenDalex/3a4c90bec1154ebe17b7ab4026aa4a2b to your computer and use it in GitHub Desktop.
Kiosk CSS
/* Disable text select */
body{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*
Disables right click contextMenu
*/
document.oncontextmenu = () => return false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment