- Is the tooltip keyboard-accessible?
- Partially. The pure-CSS version works with :hover and :focus, but ARIA-aria-describedby needs a small JS addition for full screen-reader support. The tool notes this in the output.
- Does it position on all four sides?
- Yes — top, right, bottom, left. The arrow automatically flips to point at the trigger.
- What about collision detection?
- Pure CSS can't detect viewport edges. For smart repositioning use a JS library like Floating UI; use this tool for simple, predictable tooltips.
- Can I put HTML inside the tooltip?
- The data-attribute approach only holds text. For rich content (images, links) switch to a sibling <span> or a JS tooltip.