<bdo> tag in HTML

Learn via video course
FREE
View all courses
JavaScript Course With Certification: Unlocking the Power of JavaScript
JavaScript Course With Certification: Unlocking the Power of JavaScript
by Mrinal Bhattacharya
1000
4.8
Start Learning
JavaScript Course With Certification: Unlocking the Power of JavaScript
JavaScript Course With Certification: Unlocking the Power of JavaScript
by Mrinal Bhattacharya
1000
4.8
Start Learning
Topics Covered

Overview

HTML bdo tag overview In the above image, we can see what a normal English paragraph looks like(the text flows from right to left). Now, let's see what is bdo tag and how it can affect the text.

bdo stands for bi-directional override. The bdo tag in HTML is used to specify the text direction or to override the current text direction. It is used primarily in languages where reading occurs from right to left, like in Arabic.

There are many tags in HTML that control how the content of a webpage will be displayed on a user's system. To know more about HTML tags, you can read HTML Tags article on Scaler Topics.

Syntax

Attributes of bdo Tag

The bdo tag in HTML supports all the global and event attributes of the HTML.

bdo tag has a special attribute, dir. It is short for direction. The dir attribute specifies the direction in which the text will be displayed. The dir attribute has only two values:

  • ltr: It means left to right. The text inside the bdo tag will be rendered from left to right. This is the default value.
  • rtl: It means right to left. The text inside the bdo tag will be rendered from right to left.

How to use the bdo Tag in the HTML?

Using the bdo tag is straightforward as using any other HTML tag like anchor tag a or paragraph tag p.

We wrap around the text we want to change the direction of in between the opening <bdo> and closing </bdo> tag. We use the dir attribute to specify the direction in which we want the text to be. By default, the text will be from left to right. If we want to change that, then we use dir="rtl". This will change the text direction of the text inside the bdo tag from right to left.

Example

Let's see the bdo tag of HTML in action as an example. In the example below, a paragraph's text direction is changed using the bdo tag. CSS is just used to add some visual appeal to the output, and it is not affecting the direction of the text in any way. The direction is only changed by the bdo tag.

Output: how to use bdo tag in HTML

Styling the bdo tag

We can style the bdo tag using different CSS properties like:

  • font-size
  • font-family
  • font-weight
  • color
  • background-color
  • text-decoration
  • text-transform

Let's see an example where we will style the text inside the bdo tag.

Output: Styling in BDO tag In the above example, we can see that the font-weight and color CSS property is used to style the text inside the bdo tag differently from the text inside the p tag.

Browser Support

All important browsers support the bdo tag in HTML

  • Google Chrome
  • Firefox
  • Safari
  • Edge
  • Opera
  • Internet Explorer

Learn More

You can learn more about other HTML tags like <p>, <a>, <button>, form, etc in the following scaler topics articles:

Conclusion

In this article, we learned about the bdo tag in HTML and its uses and functionality.

The bdo tag is used to change the direction of the text wrapped inside the tag. Using the dir attribute of the bdo tag, we can change the direction of the text. This is particularly useful for languages that are written from right to left, like Arabic.