word-spacing属性规定增加或减少字与字之间的空白。
p { word-spacing:length;}
| 值 | 描述 |
|---|---|
| normal | 默认。定义单词间的标准空间。 |
| length | 定义单词间的固定空间。 |
| inherit | 规定应该从父元素继承 word-spacing 属性的值。 |
HTML
<p> This is some text. This is some text. </p>
CSS
p
{
word-spacing:30px;
}
执行结果
This is some text. This is some text.
相关链接