Files
30-seconds-of-code/snippets/css/s/disable-selection.md
2023-05-07 16:07:29 +03:00

470 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Disable selection snippet css
interactivity
interior-9 2020-12-30T15:37:37+02:00

Makes the content unselectable.

  • Use user-select: none to make the content of the element not selectable.
  • Note: 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;
}