Bdo dir attribute

Definition and usage

dir Set or return the value of the dir attribute of the <bdo> element.

<bdo> dir attribute Specify the text direction inside the <bdo> element.

Note:For the <bdo> element, the dir attribute is required.

See also:

HTML 参考手册:HTML <bdo> ਟੈਗ

Example

Example 1

Change the text direction of the text inside the <bdo> element to "right to left":

document.getElementById("myBdo").dir = "rtl";

Try it yourself

Example 2

Get the text direction of the text inside the <bdo> element:

var x = document.getElementById("myBdo").dir;

Try it yourself

Syntax

Return dir property:

bdoObject.dir

set dir property:

bdoObject.dir = "ltr|rtl"

属性值

描述
ltr 规定从左到右的文本方向。
rtl 规定从右到左的文本方向。

技术细节

返回值: 字符串值,表示文字的文字方向。

浏览器支持

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
支持 支持 支持 支持 支持

相关页面

HTML 参考手册:HTML <bdo> dir ਵਿਸ਼ੇਸ਼ਤਾ