The <bdo> stands for Bi-Directional Override. This tag is used to specify the text direction or used to change the current direction.
Syntax:
<bdo dir> Contents... </bdo>
Attributes: This element contains dir attributes which is used to specify the direction of text written inside the <bdo> element. The dir attribute contains two values which are listed below:
- rtl:The text direction from right to left (reverse the text).
- ltr:The text direction from left to right.
Example:
<!DOCTYPE html> < html > < head > < title >bdo tag</ title > < style > body { text-align:center; } h1 { color:green; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >< bdo > Tag</ h2 > < bdo dir = "ltr" >GeeksforGeeks</ bdo >< br > < bdo dir = "rtl" >GeeksforGeeks</ bdo > </ body > </ html > |
Output:
Supported Browsers: The browser supported by <bdo> tag are listed below:
- Apple Safari
- Google Chrome
- Firefox
- Opera
- Internet Explorer
leave a comment
0 Comments