# Tooltip

> Based on [Radix Tooltip](https://www.radix-ui.com/primitives/docs/components/tooltip)

The Tooltip component displays informational text when a user hovers over or focuses on an element. Tooltips provide helpful hints without cluttering the interface.

## When to Use

Use Tooltip for:

* Explaining icon-only buttons
* Providing additional context for form fields
* Showing keyboard shortcuts
* Displaying truncated text in full
* Any brief, non-interactive hint

## Structure

The Tooltip component consists of:

| Component           | Description                                       |
| ------------------- | ------------------------------------------------- |
| **Tooltip**         | The root component that manages show/hide state   |
| **Tooltip Trigger** | The element that shows the tooltip on hover/focus |
| **Tooltip Content** | The floating text that appears                    |

## How to Use

1. Drag a **Tooltip** component from Components > Radix onto your canvas
2. Place your trigger element (like a button) inside Tooltip Trigger
3. Edit the text inside Tooltip Content
4. Style the tooltip content to match your design

## Properties

Some commonly used properties (see the Settings panel for all available options):

### Tooltip

| Property                    | Description                                                  |
| --------------------------- | ------------------------------------------------------------ |
| **open**                    | Force the tooltip open for styling on the canvas             |
| **delayDuration**           | Delay in milliseconds before showing (default: 700ms)        |
| **disableHoverableContent** | Prevents tooltip from staying open when hovering its content |

### Tooltip Content

| Property        | Description                                         |
| --------------- | --------------------------------------------------- |
| **side**        | Preferred side: `top`, `right`, `bottom`, or `left` |
| **sideOffset**  | Distance in pixels from the trigger (default: 4px)  |
| **align**       | Alignment: `start`, `center`, or `end`              |
| **alignOffset** | Offset from the alignment position                  |

## Related

* [Popover](/university/radix/popover.md) – Interactive floating content panel
* [Dialog](/university/radix/dialog.md) – Modal window for focused content
* [Label](/university/radix/label.md) – Accessible labels for form controls


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.webstudio.is/university/radix/tooltip.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
