The HTML <bdo> dir attribute is used to define the text direction of a <bdo> element.
Syntax
<bdo dir="ltr|rtl">
Attribute Values:
- ltr: It defines the text direction from left-to-right.
- rtl: It defines the text-direction from right-to-left.
Example:
<!DOCTYPE html>
< html >
< head >
< title >HTML bdo dir Attribute</ title >
</ head >
< body style = "text-align:center;" >
< h1 style = "color:green;" >
GeeksforGeeks
</ h1 >
< h2 >Bdo dir Attribute</ h2 >
< bdo dir = "ltr" >GeeksforGeeks</ bdo >
< br >
< bdo dir = "rtl" >GeeksforGeeks</ bdo >
</ body >
</ html >
|
Output:

Supported Browsers: The browsers supported by HTML <bdo> dir attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera