Open In App

HTML | <bdo> dir Attribute

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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;">
        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:

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

Last Updated : 10 Oct, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads