The value of the dir
attribute of <bdo>
determines the reading direction of text.
The direction can be either from left to right or from right to left.
<bdo dir='ltr|rlt'> . . . </bdo>
<bdo> |
Yes | Yes | Yes | Yes | Yes |
None.
The <bdo> tag supports the Global Attributes in HTML.
The <bdo> tag supports the Event Attributes in HTML.
bdo { unicode-bidi: bidi-override; }
A demo showing how to use bdo tag.
<html>
<body>
<bdo dir="ltr">This text is read from left to right</bdo>
<br/>
<bdo dir="rtl">tfel ot thgir morf daer si txet sihT</bdo>
</body>
</html>