how to desactivate txt selection css

Solutions on MaxInterview for how to desactivate txt selection css by the best coders in the world

showing results for - "how to desactivate txt selection css"
Sergio
29 Apr 2018
1/* To desactivate text selection */
2    user-select: none; /* Normal (chrome)*/
3	-webkit-touch-callout: none; /* iOS Safari */
4    -webkit-user-select: none; /* Safari */
5    -khtml-user-select: none; /* Konqueror HTML */
6    -moz-user-select: none; /* Old versions of Firefox */
7    -ms-user-select: none; /* Internet Explorer/Edge */