Open In App

How to override the current text direction using HTML ?

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:

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:


Article Tags :