Open In App

How to override the current text direction using HTML ?

Last Updated : 08 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will override the current text direction by using the dir attribute in the particular element. It is used to specify the text direction of the element content.
It contains three values:

  • ltr: It is the default value. This value represent the text in Left-to-right text direction.
  • rtl: This value represent the text in right-to-left text direction.
  • auto: Let the browser figure out the text direction, based on the content.

Syntax:

<element dir = "ltr | rtl | auto">

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        Override the current 
        text direction
    </title>
  
    <style>
        h1 {
            color: green;
        }
  
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        HTML5: How to override 
        the current text direction?
    </h2>
  
    <p dir="rtl">
        GeeksforGeeks: A computer 
        science portal for geeks
    </p>
</body>
  
</html>


Output:

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        Override the current 
        text direction
    </title>
  
    <style>
        h1 {
            color: green;
        }
  
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        HTML5: How to override 
        the current text direction?
    </h2>
  
    <p dir="ltr">
        GeeksforGeeks: A computer 
        science portal for geeks
    </p>
</body>
  
</html>


Output:

Supported Browsers:

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads