My website has all text set to be non-selectable, except for input and textareas, with the following CSS code:
*:not(input, textarea) { -webkit-touch-callout:none; -moz-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-user-select:none; user-select:none; }
Now, I'm trying to make specific texts selectable by adding a class ".selectable" to the selector, but it doesn't seem to work. Any ideas on why this isn't working?