HTML | <bdo> dir Attribute

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;">
        w3wiki
    </h1>
      
    <h2>Bdo dir Attribute</h2
      
    <bdo dir="ltr">w3wiki</bdo>
    <br
    <bdo dir="rtl">w3wiki</bdo
</body
  
</html>                                                


Output:

Supported Browsers: The browsers supported by HTML <bdo> dir attribute are listed below:

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