CSS letter-spacing property
Description
CSS letter-spacing adds additional space between the letters.
Syntax
letter-spacing : normal | length
Property values
normalDefault
-
In this case, no additional space is added i.e. it computes to 0 additional space.
letter-spacing: normal;
length
-
It adds 4px additional spacing between typographic units (letters, images, inline blocks) thus expanding the space.
letter-spacing: 4px;
Applicable to
It applies to inline boxes.
From web4college, the free CSS digger
#CSS digger
Was this article helpful?
It is the representing the space between letters.
▾