Skip to content

Instantly share code, notes, and snippets.

@pixelpicosean
Created April 14, 2014 07:01
Show Gist options
  • Save pixelpicosean/10622877 to your computer and use it in GitHub Desktop.
Save pixelpicosean/10622877 to your computer and use it in GitHub Desktop.
Make canvas elements not selectable
canvas {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
/* mobile webkit */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment