selection handler css

Solutions on MaxInterview for selection handler css by the best coders in the world

showing results for - "selection handler css"
Luka
18 Sep 2016
1/* Keyword values */
2user-select: none;
3user-select: auto;
4user-select: text;
5user-select: contain;
6user-select: all;
7
8/* Global values */
9user-select: inherit;
10user-select: initial;
11user-select: revert;
12user-select: unset;
13
14/* Mozilla-specific values */
15-moz-user-select: none;
16-moz-user-select: text;
17-moz-user-select: all;
18
19/* WebKit-specific values */
20-webkit-user-select: none;
21-webkit-user-select: text;
22-webkit-user-select: all; 
23
24/* Doesn't work in Safari; use only
25 "none" or "text", or else it will
26 allow typing in the <html> container */
27
28/* Microsoft-specific values */
29-ms-user-select: none;
30-ms-user-select: text;
31-ms-user-select: element;
32
similar questions
queries leading to this page
selection handler css