You are here: Reference > CSS > properties > letter-spacing

letter-spacing property

Browser support:
Specifies the amount of space between letters.
JavaScript page for this property: letterSpacing. You can find other example(s) there.

Possible values:

 One of the following values: 
inherit
Takes the value of this property from the computed style of the parent element.
normal
Default. Normal spacing is used.
space in length
The space between letters in length units. For the supported length units, see the length page.
Default: normal.

Example HTML code 1:

This example illustrates the use of the letter-spacing property:
<head>
    <style>
        .example {
            letter-spacing: 10px;
        }
    </style>
</head>
<body>
    <div class="example">letter-spacing: 10px</div>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content