Articles → HTML → Bdo Tag In HTML
Bdo Tag In HTML
Purpose
Syntax
<bdo dir=""> <!--dir will ltr for "Left To Right" and rtl for "Right To Left"->
text
</bdo>
Example
<html>
<head>
<title>bdo Demo</title>
</head>
<body> <bdo dir="ltr">
Left to right direction
</bdo>
<br /> <bdo dir="rtl">
Right to Left direction
</bdo> </body>
</html>
Try It
Output
Browser Support
Internet Explorer | Firefox | Chrome | Safari | Opera | Edge |
---|
Yes | Yes | Yes | Yes | Yes | Yes |