81
HTML <bdo> tag
HTML <bdo> tag stands for “bidirectional override” which is used to overrides the current/default text direction. This tag sets the direction of content within it to render on browser from left to right or right to left.
The <bdo> tag is useful for the languages which are written from right to left such as Arabic and Hebrew.
Syntax
Following are some specifications about the <bdo> tag
Display | Inline |
Start tag/End tag | Both start and End tag |
Usage | textual |
Example
Output:
Attributes
Tag-specific attributes
Attribute | Value | Description |
---|---|---|
dir | ||
ltr | Defines the directionality from left to right. | |
rtl | Defines the directionality from right to left. |
Global Attributes
The <bdo> tag supports the Global attribute in HTML.
Event Attributes
The <bdo> tag supports the Event attribute in HTML.
Supporting Browsers
Element | Chrome | IE | Firefox | Opera | Safari |
<bdo> | Yes | Yes | Yes | Yes | Yes |
Next TopicHTML big Tag