ScanSkill

letter-spacing

The letter-spacing property adjusts the space between characters in a text.

Syntax

letter-spacing: normal | value;

Example

        .div-1{
            letter-spacing: normal;
        }

        .div-2{
            letter-spacing: 10px;
        }
letter-spacing

Property Values

normal: sets a normal space between the characters in a text. (Default value)

value: sets the given length value as the space between the characters in a text.