CSS - letter-spacing 属性



CSS letter-spacing 属性指定组成单词或文本的字母或字符之间的间距。

可能的值

  • normal:默认值,表示字母之间的正常间距量。
  • length:任何特定长度 {像素 (px)、点 (pt)、ems (em) 或百分比 (%)}。
  • 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>