letterSpacing 属性设置或返回文本中字符之间的间距。
提示:要设置或返回文本中单词之间的间距,请使用字间距属性。
Property | |||||
---|---|---|---|---|---|
letterSpacing | Yes | Yes | Yes | Yes | Yes |
返回 letterSpacing 属性:
object.style.letterSpacing
设置 letterSpacing 属性:
object.style.letterSpacing = "normal|
length|initial|inherit"
Value | Description |
---|---|
normal | Normal space between characters. This is default |
length | Defines the space 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 |
letterSpacing 属性和 wordSpacing 属性之间的区别:
function changeLetters() {
document.getElementById("demo1").style.letterSpacing = "15px";
}
function changeWords() {
document.getElementById("demo2").style.wordSpacing = "15px";
}
亲自试一试 »
CSS教程:CSS 文本
CSS 参考:字母间距属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!