Skip to content

Pointer Events

Controls how an item responds to pointer events.

Class Properties

pe-auto

pointer-events: auto;

pe-none

pointer-events: none;

Using breakpoints

Using 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>

Using variants

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

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