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.
Overrides the current text direction, forcing text to render left-to-right or right-to-left.
The <bdo> (Bidirectional Text Override) element forces text to render in a specified direction, regardless of the Unicode Bidirectional Algorithm. The dir attribute is required.
For isolating text without forcing direction (user-generated content, unknown text), use <bdi> instead.
VB's i18n stylesheet sets unicode-bidi: embed on [dir="rtl"] elements, complementing the native bdo behavior.
<bdi> (auto-detection is safer)dir="rtl" on <html><p>Normal text: Hello World</p><p>Reversed: <bdo dir="rtl">Hello World</bdo></p>
<p dir="rtl"> This paragraph is right-to-left, but <bdo dir="ltr">this text is forced left-to-right</bdo>.</p>
<p> The Hebrew word for "peace" is <bdo dir="rtl">שלום</bdo>.</p>
<p> <bdo dir="rtl"> Outer RTL: Hello <bdo dir="ltr">Inner LTR: World</bdo> Back to RTL </bdo></p>
| Attribute | Description |
|---|---|
dir |
Required. Text direction: ltr (left-to-right) or rtl (right-to-left) |
Also supports global attributes.
bdo { unicode-bidi: bidi-override; /* browser default */}
VB does not add additional styling. The element's value is in its Unicode override behavior.
<bdo> affects visual presentation only. Screen readers typically read text in logical order, not visual order. Be cautious using <bdo> purely for visual effects, as the rendered order may confuse users who cannot see it.
<bdi> — Isolates text without forcing direction (safer for unknown text)<q> — Inline quotations with locale-aware quote marks