HTML DOM textIndent 屬性
定義和用法
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>