亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM direction 屬性

HTML DOM Style 對象參考手冊

定義和用法

direction 屬性設置元素的文本方向。

語法:

Object.style.direction=ltr|rtl|inherit

Possible Values

描述
ltr 默認。內(nèi)容從左向右流動。
rtl 內(nèi)容從右向左流動。
inherit 內(nèi)容流動從父元素繼承。

實例

本例把文本設置為從右向左流動:

<html>
<head>
<script type="text/javascript">
function changeTextDirection()
{
document.getElementById("p1").style.direction="rtl";
}
</script>
</head>
<body>

<p id="p1">This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.</p>

<input type="button" onclick="changeTextDirection()" 
value="Set text to flow right to left" />

</body>
</html>

HTML DOM Style 對象參考手冊