Skip to content

Home

Disable selection

Makes the content unselectable.

❗️ Caution

This is not a secure method to prevent users from copying content.

<p>You can select me.</p>
<p class="unselectable">You can't select me!</p>
.unselectable {
  user-select: none;
}

More like this

Start typing a keyphrase to see matching snippets.