User select
Utilities for controlling text selection.
Quick reference
Section titled “Quick reference”| Class | Styles |
|---|---|
af-select-none | user-select: none |
af-select-text | user-select: text |
Examples
Section titled “Examples”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>