CSS Cursor Playground - Online Preview All Pointer Styles
Hover over tiles to see every CSS cursor value in action. Quick visual reference for choosing the right UI feedback.
UD5 Toolkit
Hover over each box to preview — click to copy the CSS code
Everything you need to know about CSS cursor styles
cursor property in CSS specifies the type of mouse cursor to display when pointing over an element.
It allows developers to enhance user experience by providing visual cues — for example, using pointer for clickable elements,
text for selectable text, or not-allowed for disabled actions. There are over 30 standard cursor values available across modern browsers.
auto, default, none,
pointer, grab, grabbing, various directional resize cursors (n-resize, se-resize, etc.),
zoom-in, zoom-out, and more. Additionally, you can use custom images via the url() function.
:hover pseudo-class combined with the cursor property. For example:.my-button:hover { cursor: pointer; }url() function: cursor: url('custom-cursor.png'), auto;auto or pointer) as the final fallback.
Supported formats include .png, .cur, and .svg. Keep images small (ideally 32Ă—32px or less) for best performance.
grab displays an open hand cursor âś‹, indicating that an element can be grabbed (draggable but not currently being dragged).
grabbing displays a closed fist cursor ✊, indicating that an element is actively being dragged.
A common UX pattern is to use grab as the default state and switch to grabbing during the drag operation (via JavaScript events like mousedown / touchstart).
cursor: pointer is the standard choice — it displays the familiar hand pointer 👆.
For elements that trigger help tooltips, use cursor: help (arrow with question mark).
For context menus, use cursor: context-menu. Always ensure the cursor matches user expectations to provide intuitive navigation.
cursor: none makes the mouse cursor invisible when hovering over the element.
This is commonly used in immersive experiences like full-screen videos, games, or custom cursor implementations where the default cursor would be distracting.
Use with caution: hiding the cursor can confuse users. Always provide a clear way to restore visibility (e.g., pressing Escape or moving to a different area).
grab and grabbing were added later and may not work in very old browsers (e.g., IE11 and below).
The zoom-in and zoom-out cursors are also well-supported in modern browsers. Always test your target browsers,
and provide sensible fallbacks using the cascade (e.g., cursor: grab, -webkit-grab, default;).
cursor: not-allowed đźš« to visually indicate the element cannot be interacted with.
For draggable items that cannot be dropped in a certain zone, use cursor: no-drop. Both provide clear visual feedback that the action is unavailable.
auto, which lets the browser determine the appropriate cursor based on the context.
For example, auto displays a text cursor over text, a pointer over links, and the default arrow over plain elements.
If you want to explicitly reset to the standard arrow cursor regardless of context, use cursor: default.
Hover over tiles to see every CSS cursor value in action. Quick visual reference for choosing the right UI feedback.
Unified input demo: see pressure, tilt, and type from any pointer. Compare pointerType values. Essential for drawing apps.
Create animations that progress with scroll position. Experiment with animation‑timeline and view‑timeline. Cutting‑edge CSS.
Browse a curated set of button hover animations. See each effect live and copy the CSS. Minimalist collection.
See every touch point with coordinates, radius, and force on your mobile device. Debug gestures with live overlay.
Experiment with scroll‑state container queries to style elements when they are stuck, snapped, or overflowed. Experimental.
Click to get a randomly generated unique abstract icon (geometric pattern). Download as SVG. For placeholder avatars and designs.
Flip a virtual coin to make a decision or settle a dispute. Realistic animation and fair random outcome. Simple, fast, and always available.
Enter a hex color and hear a tone mapped to its hue. Explore the connection between color and sound. Fun perceptual experiment.
Get a catchy, Product Hunt‑style tagline for your side project. Like 'Uber for left shoes'. Instant creativity.
Click to get a random element and a short story about its discovery and uses. Fascinating science.
Generate a random 4‑panel comic sketch with simple stick figures and funny dialogue. Just for laughs. Canvas.
Play the classic Snake game inside your browser. Arrow keys to move, eat the apple, grow longer. High score tracked locally.
Browse a beautifully designed periodic table with electron shell visualization and key facts. Click any element to learn more. Offline ready.
Write a fragment shader and see the result rendered on a full‑screen quad. For WebGL learners. Local compilation.
Generate a single line from famous public‑domain poems. Great for creative writing prompts or daily inspiration.
Get a random quote from Shakespeare's works with play and character attribution. Copy in beautiful typography.
Get a common English idiom with its meaning and example. Perfect for ESL learners. Local collection.
See a clip of a famous artwork and choose the correct title. Art history fun. Local images.
Get a random famous movie quote along with the film name and year. Test your movie knowledge. Static data, no API.
Easily convert between kilograms, pounds, ounces, stones, and more. Supports both metric and imperial weight units. Instant and private conversions.
Generate a realistic‑sounding dinosaur name and see a fun description. Perfect for kids and writers.
Enter a keyword or author to find classic quotes from public domain works. Inspiration tool.
Spin a wheel or randomize to get a chemical element with fascinating facts and description. Great for kids.
Click to see a random English word with its definition and an example sentence. Expand your vocabulary daily.
See a literal illustration of an idiom and guess the phrase. Fun for English learners.
Play Hangman where the words are element names. Learn the periodic table while having fun. High score localStorage.
Fetches a random Wikipedia article summary via API. Read interesting facts. Simple knowledge discovery tool. No data collected.
Pick a language and get a random useful travel phrase with pronunciation. For fun language learning. Static data.
Guess the movie title from a sequence of emojis. Hundreds of puzzles, score tracking. Pure frontend fun.