CSS word-spacing 属性
描述
word-spacing属性用于修改单词之间的间距。
可能的取值
- normal - 默认的单词间距不变。实际上,这相当于将值设置为0。
-
length - 这将会增加单词之间的间距。长度越大,单词之间的间距就越大。
适用于
所有的HTML元素。
DOM语法
object.style.wordSpacing = "10px";
示例
以下是一个示例,演示如何设置单词之间的间隔。
<html>
<head>
</head>
<body>
<p style = "word-spacing:5px;">
This text is having space between words.
</p>
</body>
</html>
这将产生以下结果 –