目录

style wordSpacing 属性

示例

将 <p> 元素中单词之间的间距设置为 50 像素:

document.getElementById("myP").style.wordSpacing = "50px";
亲自试一试 »

描述

wordSpacing 属性设置或返回文本中单词之间的间距。

提示:要设置或返回文本中字符之间的间距,请使用字母间距属性。


浏览器支持

Property
WordSpacing Yes Yes Yes Yes Yes

语法

返回 wordSpacing 属性:

object.style.wordSpacing

设置 wordSpacing 属性:

object.style.wordSpacing = "normal| length|initial|inherit"

属性值

Value Description
normal Defines normal spacing between words. This is default
length Specifies the space between words in length units. Negative values are allowed
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 普通的
返回值: 一个字符串,表示文本中单词之间的空格
CSS版本 CSS1

更多示例

示例

使用负值:

document.getElementById("myP").style.wordSpacing = -3px";
亲自试一试 »

示例

返回 <p> 元素的字间距:

alert(document.getElementById("myP").style.wordSpacing);
亲自试一试 »

示例

letterSpacing 属性和 wordSpacing 属性之间的区别:

function changeLetters() {
  document.getElementById("myP1").style.letterSpacing = "15px";
}

function changeWords() {
  document.getElementById("myP2").style.wordSpacing = "15px";
}
亲自试一试 »

相关页面

CSS教程:CSS 文本

CSS 参考:字间距属性