Interactivity

User Select

Utilities for controls whether the user can select text.


Variant

Active Checked Child-Selection Dark Mode Disabled Expand First-Last-Selection First-Letter Focus Focus-Visible Focus-Within Fullscreen Group-Focus Group-Hover Hover Landscape Light Mode Portrait Reduce-Motion Responsive Selection-Hover Visited

API

classcss
select-alluser-select: all
select-autouser-select: auto
select-noneuser-select: none
select-textuser-select: text

Usage

<div class="height-32 width-65 ... select-none">
...
</div>
HTML
.dummy {
@extend
.height-32,
.width-65,
.select-none;
}
SCSS