Skip to content

Try our new Crash Courses!

Buy one of our new Crash Courses, now hosted on Teachable.

Word spacing – CSS

Demo

Summary

To change the space between the words in an element’s text using CSS, use the word-spacing property:

selector {
  word-spacing: 5px;
}

Details

The word-spacing property takes a length value (like 1px or 1em). A positive value increases the space between words. A negative value decreases the space between words.

Exercises

First, recreate the CSS code from the Demo section in your CSS file. Then try changing the value for the property. Try using positive and negative values.

Reference

word-spacing – MDN

Back to: CSS Reference > CSS Properties