The letter-spacing property specifies the space between characters in a text. The
values can be set as:
- normal defines the default style with no extra space between characters
- length defines an extra space between characters using measurement units like
px, pt, cm, mm, etc.;
- inherit inherits the property from its parent element;
letter-spacing p.normal {
letter-spacing: normal;
}
p.positive {
letter-spacing: 4px;
}

Welcome to css!

  • 1.
    The letter-spacing propertyspecifies the space between characters in a text. The values can be set as: - normal defines the default style with no extra space between characters - length defines an extra space between characters using measurement units like px, pt, cm, mm, etc.; - inherit inherits the property from its parent element; letter-spacing p.normal { letter-spacing: normal; } p.positive { letter-spacing: 4px; }