Files
30-seconds-of-code/snippets/disable-selection.md
Angelos Chalaris 2fbd3e0737 Update format
2020-04-30 13:21:04 +03:00

370 B

title, tags
title tags
Disable selection interactivity,beginner

Makes the content unselectable.

  • user-select: none specifies that the text cannot be selected.
  • 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;
}