CSS 属性

word-spacing 属性指定文本中单词之间的间距。

属性值

  • normal:默认值表示单词之间的正常间距。

  • length:任何特定长度。

  • initial:设置单词间距为其默认值。

  • inherit:允许从其父元素继承字间距值。

适用

所有 HTML 元素。

DOM 语法

object.style.wordSpacing = "10px"; 

示例

这里是一个示例:

<html>
<head>
</head>
<body>
   <h2>Word spacing 字间距,英文有效,中文无效</h2>
   <p style="word-spacing: normal;">字间距正常。Failure is the mother of success. 失败乃成功之母。
</p>
   <p style="word-spacing: 15pt;">增加字间距。Failure is the mother of success. 失败乃成功之母。
</p>
   <p style="word-spacing: -1px;">减少字间距。Failure is the mother of success. 失败乃成功之母。
</p>
</body>
</html>