Makes the content unselectable.
<p>You can select me.</p>
<p class="unselectable">You can't select me!</p>
.unselectable {
user-select: none;
}
You can select me.
You can't select me!
user-select: none
specifies that the text cannot be selected.