Files
30-seconds-of-code/snippets/disable-selection.md
Angelos Chalaris a8818b1998 Add extractor and builder
Tested and working
2019-08-22 14:04:18 +03:00

601 B

title, tags
title tags
Disable selection interactivity,intermediate

Makes the content unselectable.

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

Explanation

user-select: none specifies that the text cannot be selected.

Browser support

⚠️ Requires prefixes for full support.
⚠️ This is not a secure method to prevent users from copying content.