Set the space between characters in an element to 15 pixels:
document.getElementById("demo").style.letterSpacing = "15px";
Try it Yourself »
The letterSpacing property sets or returns the space between characters in a text.
Tip: To set or return the spacing between words in a text, use the wordSpacing property.
Property | |||||
---|---|---|---|---|---|
letterSpacing | Yes | Yes | Yes | Yes | Yes |
Return the letterSpacing property:
object.style.letterSpacing
Set the letterSpacing property:
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 |
Default Value: | normal |
---|---|
Return Value: | A String, representing the space between characters in the text |
CSS Version | CSS1 |
Using negative values:
document.getElementById("demo").style.letterSpacing = "-2px";
Try it Yourself »
Return the letter spacing of an element:
alert(document.getElementById("demo").style.letterSpacing);
Try it Yourself »
Difference between the letterSpacing property and the wordSpacing property:
function changeLetters() {
document.getElementById("demo1").style.letterSpacing = "15px";
}
function changeWords() {
document.getElementById("demo2").style.wordSpacing = "15px";
}
Try it Yourself »
CSS tutorial: CSS Text
CSS reference: letter-spacing property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!