CSS - word-spacing 属性



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

可能的取值

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

  • length:任何具体的长度 {像素 (px)、磅 (pt)、em 或百分比 (%) }。

  • initial:将 word-spacing 设置为其默认值。

  • inherit:允许从其父元素继承 word-spacing 值。

应用于

所有 HTML 元素。

Explore our latest online courses and learn new skills at your own pace. Enroll and become a certified expert to boost your career.

DOM 语法

object.style.wordSpacing = "10px";

示例

这是一个示例

Open Compiler
<html> <head> </head> <body> <h2>Word spacing</h2> <p style="word-spacing: normal;">Word spacing normal.</p> <p style="word-spacing: 15pt;">Word spacing increased.</p> <p style="word-spacing: -1px;">Word spacing decreased.</p> </body> </html>
广告