Interactivity

Tailwind CSS pointer-events-none Class

The pointer-events-none utility class generates the following CSS when applied to an element.

CSS Output

CSS
.pointer-events-none {
  pointer-events: none;
}

Variants

Use these variant prefixes to apply pointer-events-none conditionally:

responsive:pointer-events-none

Use It

HTML
<div class="relative">
  <input class="w-full p-2 border rounded" />
  <div class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3">
    <svg class="w-5 h-5 text-gray-400">...</svg>
  </div>
</div>

Understanding pointer-events-none

The Tailwind CSS pointer-events-none utility applies pointer-events: none; to an element when added to its class attribute. It makes the element invisible to pointer events (clicks, hovers, etc.). Events pass through to elements underneath, making this essential for overlay decorations.

This utility is part of Tailwind's Interactivity module, designed for controlling user interaction behaviors such as cursors, text selection, resizing, and scrolling. In Tailwind's utility-first workflow, you add pointer-events-none directly to your HTML elements rather than writing custom CSS. This approach accelerates development and keeps styles co-located with your markup, making it easy to see exactly how each element is styled at a glance.

Common responsive variants include sm:pointer-events-none, md:pointer-events-none, lg:pointer-events-none, and xl:pointer-events-none, allowing different behavior at each breakpoint. State variants like hover:pointer-events-none and focus:pointer-events-none enable interactive styling without any JavaScript. You can also combine multiple variants for fine-grained control over when the utility applies.

This class works well alongside `pointer-events-auto`, `cursor-default`, `opacity-50` to build complete, production-ready interfaces. Tailwind's tree-shaking ensures only utilities you actually use appear in your final CSS bundle, keeping file sizes minimal. Browser support for the underlying CSS is excellent across Chrome, Firefox, Safari, and Edge.

Related Classes

Explore More Tailwind Classes

Browse our complete reference of 321 Tailwind CSS utility classes with CSS output, variants, and examples.