HTML <bdo> Tag
Description:
The <bdo> tag allows you to specify the text direction and override the bidirectional algorithm.
Specific Attributes:
| Attribute | Definition |
| dir |
Specifies the text direction for the content in
an element.
|
Other Attributes:
| Attribute | Definition |
| class | Specifies a classname for an element. |
| id | Specifies a unique id for an element. |
| lang | Specifies a language code for the content in an element. |
| title | Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip"). |
| style | Specifies an inline style for an element. |
Example Code:
<bdo dir="rtl">This text is going to be a bit difficult to read!</bdo>
Result
This text is going to be a bit difficult to read!