目录

style direction 属性

示例

将 <p> 元素的文本方向设置为 "right-to-left":

document.getElementById("demo").style.direction = "rtl";
亲自试一试 »

描述

Direction 属性设置或返回元素内容的文本方向(阅读顺序)。


浏览器支持

Property
direction Yes Yes Yes Yes Yes

语法

返回方向属性:

object.style.direction

设置方向属性:

object.style.direction = "ltr|rtl|initial|inherit"

属性值

Value Description
ltr Text flows from left to right. This is default
rtl Text flows from right to left
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 左转
返回值: 一个字符串,表示元素的文本方向
CSS版本 CSS2

更多示例

示例

返回 <p> 元素的文本方向:

alert(document.getElementById("demo").style.direction);
亲自试一试 »

相关页面

CSS教程:CSS 文本

CSS 参考:方向属性

HTML 参考:HTML 目录属性

HTML DOM 参考:HTML DOM dir 属性