Free CSS Pointer Events Generator

Control pointer event responses with our free tool. Pointer-events for overlays and interactions.

Frequently Asked Questions

What does pointer-events: none do?

It makes an element invisible to pointer interactions—clicks pass through to elements behind it. Useful for overlays, watermarks, and decorative elements.

Can I disable clicks but keep hover?

No, pointer-events: none disables all pointer interactions including hover. You'd need JavaScript to selectively prevent click events while keeping hover.

What about SVG pointer events?

SVG has additional values like 'stroke', 'fill', 'visible', controlling whether events fire on fills, strokes, or only visible portions. Very useful for complex graphics.