Created
June 4, 2014 10:28
-
-
Save voku/23eaaecbe54c7d53a5de to your computer and use it in GitHub Desktop.
make text not selectable: Make text not selectable by user. - From http://snippetlib.com/css/make_text_not_selectable - DEMO: http://jsfiddle.net/voku/79swC/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.notSelect { | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment