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.
Indicates strong importance, seriousness, or urgency. Rendered as bold with font-synthesis protection.
The <strong> element indicates strong importance, seriousness, or urgency. Screen readers may announce it with a change in voice. VB styles it with font-weight: 600, font-synthesis: none (prevents faux bold), and font-optical-sizing: auto for variable fonts.
Inside <code> and <pre>, strong gets a subtle highlight background instead of relying on weight alone.
| Element | Semantics | Screen Reader |
|---|---|---|
<strong> |
Importance, urgency, seriousness | May be announced with emphasis |
<b> |
Draw attention — no extra importance | Not announced differently |
<!-- strong: importance / urgency --><p><strong>Warning:</strong> This action is destructive.</p> <!-- b: attention without importance --><p>Try the <b>Classic Burger</b> — our most popular item.</p>
<p><strong>Warning:</strong> This action cannot be undone.</p><p><strong>Do not</strong> share your password with anyone.</p>
Nesting <strong> increases the degree of importance:
<p><strong>This is important. <strong>This is very important.</strong></strong></p>
Inside code blocks, <strong> gets a highlight background for better visibility in monospace:
<pre><code>const result = <strong>calculateTotal</strong>(items);</code></pre>
strong, b { font-weight: 600; font-synthesis: none; /* prevent faux bold */ font-optical-sizing: auto;} /* Combined bold + italic */:where(strong em, em strong) { font-weight: 600; font-style: italic; font-synthesis: none;} /* Bold in code — highlight background */:where(code, pre) :where(b, strong) { background-color: oklch(from var(--color-interactive) l c h / 0.12); border-radius: var(--radius-s); padding-inline: var(--size-2xs);}
<strong> with a change in voice tone<b> which is not announced differently<strong> increases the degree of importance semantically