Skip to content

User select

Utilities for controlling text selection.

ClassStyles
af-select-noneuser-select: none
af-select-textuser-select: text
Disable selection
Try selecting this text.
<div class="af-select-none">Try selecting this text.</div>
Allow text selection
This part can be selected. This part can’t.
<div class="af-select-none">
  <span class="af-select-text">This part can be selected.</span>
  <span>This part can't.</span>
</div>