Open In App

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:

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:

Article Tags :