Files
30-seconds-of-code/snippets/disable-selection.md
2018-03-03 15:05:35 +10:00

703 B

Disable selection

Makes the content unselectable.

HTML

<p>You can select me.</p>
<p class="unselectable">You can't select me!</p>

CSS

.unselectable {
  user-select: none;
}

Demo

You can select me.

You can't select me!

<style> .snippet-demo__disable-selection { user-select: none; } </style>

Explanation

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

Browser support

⚠️ Requires prefixes for full support.