<bdo> HTML Tag

In this article I will discuss <bdo> tag of HTML
  • 2169

The HTML bdo tag is used for change the text direction.This can be useful when displaying hebrew, arabic, and other languages that are written from right to left.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <bdo dir="ltr">In this article I explain the &lt;bdo&gt; tag</bdo><br />

    <bdo dir="rtl">In this article I explain the &lt;bdo&gt; tag</bdo><br />

    <bdo dir="ltr">Have a nice day!!!!</bdo><br />

    <bdo dir="rtl">Have a nice day!!!!</bdo>

</body>

</html>

 

Output
 

In this article I explain the <bdo> tag
In this article I explain the <bdo> tag
Have a nice day!!!!
Have a nice day!!!!

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

 

© 2020 DotNetHeaven. All rights reserved.