Files
30-seconds-of-code/snippets/disable-selection.md
Angelos Chalaris 7e69307433 Update tags, expertise and descriptions across
Fix anything that was a bit out of place
2020-03-05 22:52:51 +02:00

463 B

title, tags
title tags
Disable selection interactivity,beginner

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.

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

Browser support