In this illustration we informing about the use of <bdo> tag in html5. The <bdo>tag(bidirectional override) specifies the direction of text displaying. This tag is useful when the text is of the languages/scripts ,which are written from right to left and Bydefault HTML content is typically rendered from left to right. The<bdo> tag must have the ending </bdo> tag. The <bdo> tag doesn't alter the language or scripts, it serves as a identifier.
| <bdo dir="value">Expression </bdo> |
The <bdo> tag has a specific attribute dir, which has two values as given below:
dir= " ltr " It specify the direction of text from left to right.
dir= " rtl " It specify the direction of text from right to left.
Example: bdotag.html
| <!DOCTYPE html> <html> <head> <title>Example of bdo tag</title> </head> <body> <p><b>using attribute value=rtl </b></p> <bdo dir="rtl">This is very easy to understand! </bdo><br> <p><b>using attribute value = ltr</b></p> <bdo dir="ltr">This is very easy to understand!</bdo> </body> </html> |
Output:

Note: See the browser compatible page for successfully rendering the program.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.