Skip to content
Get ready for the next version of Yumma CSS, which is going to be amazing!

User Select

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

Class Properties

us-a

user-select: all;

us-auto

user-select: auto;

us-none

user-select: none;

us-t

user-select: text;

Using responsive modifiers

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 hover modifiers

Using :hover modifiers 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>