<bdo>
ℹ️ <bdo> tag is used to change the direction of a text (RTL/LTR).
The HTML Bidirectional Text Override element
<bdo>
overrides the current directionality of text, so that the text within is rendered in a different direction.<bdo dir="rtl">Hello</bdo> World!
You can control direction using
dir
attribute:dir="rtl"
- Text goes from right to left.dir="ltr"
- Text goes from left to right.
Last modified 3yr ago