Skip to content
Sunsetting Yumma CSS Intellisense extension πŸ‘‹

Pointer Events

Controls how an item responds to pointer events.

Class Properties

pe-auto

pointer-events: auto;

pe-none

pointer-events: none;

Auto

This example sets the pointer events to auto. The element can receive pointer events as normal.

Try clicking the search emoji to see how the input reacts.
πŸ”Ž
<div>
<label class="d-b fw-600 mb-1 tc-d-lead-3">Auto</label>
<div class="p-r">
<input class="b-2 b-s pl-10 pr-4 py-2 rad-1 w-full" placeholder="Type something..." />
<div class="ai-c d-f dir-b-0 dir-l-0 dir-t-0 p-a pe-auto pl-3">πŸ”Ž</div>
</div>
</div>

None

This example sets the pointer events to none. The element won’t receive any pointer events, meaning you can’t click on it.

Try clicking the search emoji to see how the input reacts.
πŸ”Ž
<div>
<label class="d-b fw-600 mb-1 tc-d-lead-3">None</label>
<div class="p-r">
<input class="b-2 b-s pl-10 pr-4 py-2 rad-1 w-full" placeholder="Type something..." />
<div class="ai-c d-f dir-b-0 dir-l-0 dir-t-0 p-a pe-none pl-3">πŸ”Ž</div>
</div>
</div>

Conditional styles

Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.

Media modifiers

You can combine responsive breakpoints like sm:pe-*,md:pe-*, lg:pe-*, and xxl:pe-* allows targeting specific utilities in different viewports.

<div class="pe-none md:pe-auto ..."></div>
Hover modifiers

Alternatively, you can apply :hover by using h:pe-* utility to override elements and change their values when hovering over them.

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