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 s element represents content that is no longer accurate or no longer relevant, displayed with a strikethrough line.
The <s> element renders text with a strikethrough to indicate content that is no longer accurate or relevant, but should not be removed from the document. VB styles the line in var(--color-text-muted) for a subtle visual that doesn't dominate.
Unlike <del>, it does not indicate an edit to the document.
<del> (which adds background color for editorial context)text-decoration: line-through<p><s>This information is outdated.</s></p>
<p>Now only <s>$99.99</s> <strong>$79.99</strong>!</p>
| Element | Use Case | VB Styling |
|---|---|---|
<s> |
No longer accurate/relevant | Line-through with muted color |
<del> |
Removed from document (editorial) | Line-through + red background tint |
s { text-decoration: line-through; text-decoration-color: var(--color-text-muted);}
visually-hidden context for critical information like pricing<p>Price: <span class="visually-hidden">Was </span> <s>$99.99</s> <span class="visually-hidden">Now </span> $79.99</p>