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

HTML DOM wordSpacing 屬性

HTML DOM Style 對(duì)象參考手冊(cè)

定義和用法

wordSpacing 屬性設(shè)置文本中的單詞間距。

語(yǔ)法:

Object.style.wordSpacing=normal|length

可能的值

描述
normal 默認(rèn)。定義單詞間的標(biāo)準(zhǔn)空間。
length 定義單詞間的固定空間。

實(shí)例

本例改變單詞間的間距:

<html>
<head>
<script type="text/javascript">
function changeWordSpacing()
{
document.getElementById("p1").style.wordSpacing="10px";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph</p>

<input type="button" onclick="changeWordSpacing()" 
value="Change space between words" />

</body>
</html>

HTML DOM Style 對(duì)象參考手冊(cè)