目录

CSS word-spacing 属性


示例

指定 <p> 元素中单词之间的间距应为 30 像素:

p {
  word-spacing: 30px;
}
亲自试一试 »

定义和用法

这个word-spacing属性增加或减少单词之间的空白。

笔记:允许负值。

展示演示❯

默认值: 普通的
遗传: 是的
可动画: 是的。阅读可动画的尝试一下
版本: CSS1
JavaScript 语法: 对象.style.wordSpacing="20px"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
word-spacing 1.0 6.0 1.0 1.0 3.5

CSS 语法

word-spacing: normal| length|initial|inherit;

属性值

Value Description Demo
normal Defines normal space between words (0.25em) . This is default Demo ❯
length Defines an additional space between words (in px, pt, cm, em, etc). Negative values are allowed. Read about length units Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 文本间距

HTML DOM 参考:wordSpacing 属性