word-spacing

CSS word-spacing Property

The word-spacing property allows changing the space between the words in a piece of text, not the individual characters.

This property can have either a positive or negative value. A positive value adds additional space between words, whereas a negative value removes the space between words. When the property is set to “normal”, the defined font will specify the space between the words.

If you want to remove the space between inline block elements, you can set the white-space property to “zero”.

The word-spacing property can be animatable with the transition property.

The word-spacing property is used on inline content.

类目类目
Initial Valuenormal
AppliExamplees toAll elements. It also applies to ::first-letter and ::first-line.
InheritedYes.
AnimatableYes. Word-spacing is animatable.
VersionCSS1
DOM Syntaxobject.style.wordSpacing = “40px”;

Syntax

Syntax

word-spacing: normal | length | initial | inherit;

Example of the word-spacing property with the “normal” value:

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      .text {
        word-spacing: normal;
      }
    </style>
  </head>
  <body>
    <h2>Word-spacing property example</h2>
    <p class="text">Lorem ipsum is simply dummy text...</p>
  </body>
</html>

In the following example the space between the words is 20px:

Example of the word-spacing property specified in “px”:

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      .text {
        word-spacing: 20px;
      }
    </style>
  </head>
  <body>
    <h2>Word-spacing property example</h2>
    <p class="text">Lorem ipsum is simply dummy text...</p>
  </body>
</html>

Result

Values

Values

ValueDescriptionPlay it
normalSpecifies normal word spacing. This is the default value of this property.Play it »
lengthSpecifies an extra word spacing. Can be specified in px, pt, cm, em, etc. Negative values are valid.Play it »
initialMakes the property use its default value.Play it »
inheritInherits the property from its parents element.


请遵守《互联网环境法规》文明发言,欢迎讨论问题
扫码反馈

扫一扫,反馈当前页面

咨询反馈
扫码关注
返回顶部