Welcome to Vanilla Breeze
This bell pulls live notifications from /go/notify/messages — the same contract documented at /docs/concepts/service-contracts/. Static articles like this one are the no-JS / no-backend fallback.
This bell pulls live notifications from /go/notify/messages — the same contract documented at /docs/concepts/service-contracts/. Static articles like this one are the no-JS / no-backend fallback.
The abbreviation element represents an abbreviation or acronym, optionally with its expansion shown via the title attribute.
The <abbr> element marks up abbreviations and acronyms, providing an expansion through the title attribute. This helps users understand unfamiliar terms and provides additional context for assistive technologies.
help cursor reinforces that the element is informationalvar(--color-interactive) for visual feedback<abbr title="HyperText Markup Language">HTML</abbr>
<abbr class="plain" title="Cascading Style Sheets">CSS</abbr>
Combine with <dfn> when first defining a term. This signals to screen readers and search engines that this is the defining instance.
<p> <dfn><abbr title="Application Programming Interface">API</abbr></dfn> (Application Programming Interface) is a set of protocols for building software applications. Later uses of <abbr title="Application Programming Interface">API</abbr> need only the abbreviation.</p>
| Class | Effect |
|---|---|
| (default) | Dotted underline + help cursor. Underline color changes to interactive on hover. |
.plain |
No underline. Title tooltip still works on hover. |
abbr { text-decoration: underline dotted; text-decoration-color: var(--color-text-muted); cursor: help;} abbr[title]:hover { text-decoration-color: var(--color-interactive);} /* Remove underline */abbr.plain { text-decoration: none;}
For maximum accessibility, spell out the abbreviation in parentheses on first use, then use <abbr> alone for subsequent occurrences. This works on all devices, including touch.
If the expansion must be accessible on touch devices, wrap the abbreviation in a <tool-tip> which responds to tap/focus in addition to hover.
<dfn> — For defining terms (often wraps <abbr> on first use)<tool-tip> — For accessible tooltips that work on touch and keyboard<dt> — Abbreviations inside definition terms for glossaries