< All the HTML Tags >

<bdo></bdo>

Video Coming Soon...

  • bdo

    Tag Type

    inline

    Tag Category

    text formatting

    Overrides the current direction of text display.

    Viewed

    1

    Examples

    1

Definition:

The HTML <bdo> tag is used to override the current text directionality, allowing you to specify text should be rendered in either left-to-right or right-to-left direction.

The dir attribute is used to set the direction of the text, with values ltr for left-to-right or rtl for right-to-left. This tag is crucial in scenarios where content direction needs to be explicitly controlled, such as in multilingual websites.

Effective use of `<bdo>` ensures that text is presented correctly across different languages and writing systems.

Attributes:

dir (values: ltr, rtl)

Accessibility:

Coming Soon…

Default bdo Example:

Right-to-left text override
<bdo dir="rtl">This text will go right-to-left.</bdo>

Default bdo Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…