JSFiddle - React, Tailwind, and code Playground

by spechackers

HTML

<p>
  Selectable text.
</p>
<p class="noselect">
  Unselectable text.
</p>

CSS

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}