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

HTML DOM textIndent 屬性

HTML DOM Style 對象

定義和用法

textIndent 屬性縮進元素中的首行文本。

語法:

Object.style.textIndent=length|%

可能的值

描述
length 定義固定的縮進。默認值:0。
% 定義基于父元素寬度的百分比的縮進。

實例

本例縮進文本:

<html>
<head>
<script type="text/javascript">
function setTextIndent()
{
document.getElementById("div1").style.textIndent="50px";
}
</script>
</head>
<body>

<div id="div1">
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.
This is some text. This is some text. This is some text.
</div>
<br />
<input type="button" onclick="setTextIndent()"
value="Indent first line of text" />

</body>
</html>

HTML DOM Style 對象