skills/tooltip/SKILL.md
Use when implementing provide additional context on hover or focus.
npx skillsauth add thedaviddias/ux-patterns-for-developers tooltipInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Provide additional context on hover or focus
A tooltip is a small popup that provides additional contextual information when a user hovers over, focuses on, or interacts with an element. It helps clarify elements with icons, buttons, or text snippets that may not be self-explanatory. There are two types of tooltips:
Use a tooltip when you need to provide additional context or explanations without taking up extra space in the UI. Common use cases include: Simple Tooltips
references/pattern.md, then choose the smallest viable variation.The following table outlines the standard keyboard interactions for tooltip components. These interactions ensure that users can access and dismiss tooltips effectively using only a keyboard. | Key | Action | | ----------- | ------------------------------------------------------------------------------------------------ | | Tab | Moves focus to the element that triggers the tooltip. The tooltip should appear on focus. | | Shift + Tab | Moves focus to the previous interactive element. The tooltip should close when focus moves away. | | Escape | Dismisses the tooltip manually (if dismissible). | | Enter/Space | Activates the tooltip (for tooltips that require explicit activation). |
Note: Tooltips should appear when an element receives focus (for keyboard users) and disappear when focus moves away. If a tooltip is interactive (contains links or buttons), it must be dismissible via the
Escapekey.
Target Metrics:
The Problem: Users might not have enough time to read the tooltip before it disappears.
How to Fix It? Ensure tooltips remain visible for at least 3–5 seconds or stay open on hover.
The Problem: Many tooltips rely only on hover, making them inaccessible to keyboard users.
How to Fix It?
Ensure tooltips can be triggered via focus (Tab key). For screen readers, pair aria-describedby on the trigger element with role="tooltip" on the tooltip container.
The Problem: Tooltips that cover input fields or buttons create confusion and may block clicks or taps.
How to Fix It? Position tooltips away from interactive elements and use arrow indicators to point from the trigger to the tooltip.
For full implementation detail, examples, and testing notes, see references/pattern.md.
Pattern page: https://uxpatterns.dev/patterns/content-management/tooltip
tools
Use when implementing multi-step forms and processes.
content-media
Use when implementing video playback with controls.
development
Use when choosing, comparing, or implementing UX patterns across the UX Patterns for Developers corpus.
tools
Use when implementing user profile and account management.