letter-spacing 属性指定组成单词或文本的字母或字符之间的间距。
属性值
normal:默认值,表示字母之间的正常空格量。
length:任何特定长度。
initial :将字母间距设置为默认值。
inherit:允许从其父元素继承字母间距值。
注意:允许使用负值。
适用范围
所有 HTML 元素。
DOM 语法
object.style.letterSpacing = "5px;"
示例
这是一个示例:
<html>
<head>
</head>
<body>
<h2>Letter spacing</h2>
<p style="letter-spacing: normal;">Letter spacing normal.</p>
<p style="letter-spacing: 10px;">Letter spacing increased.</p>
<p style="letter-spacing: -1px;">Letter spacing decreased.</p>
</body>
</html>