JSFiddle - React, Tailwind, and code Playground
by karthick6891
HTML
<p class="selectable">You should be able to select this text.</p>
<p>Hey, you can't select this text!</p>
CSS
body :not(.selectable){
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}