Skip to content

User Select

Controls the ability of the user to select text in an element.

Class Properties

us-auto

user-select: auto;

us-none

user-select: none;

Using breakpoints

Using responsive breakpoints like sm:us-*, md:us-*, lg:us-*, and xxl:us-* allows targeting specific utilities in different viewports.

<div class="us-none md:us-auto ..."></div>

Using variants

Using :hover variants such as h:us-* allows you to override elements and change their values when hovering over them.

<div class="us-none h:us-auto ..."></div>