JSFiddle - React, Tailwind, and code Playground
by Jiawei Zhou
HTML
<div>
<p>You can't copy me.</p>
</div>
<div>
.
<p>But you can accidently copy me (in WebKit/Blink, but not Gecko) by selecting the periods around me.</p>
.
</div>
CSS
p {
-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
-webkit-user-select: none; /* Chrome, Safari, and Opera */
-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer 10+*/
user-select: none;
}