首页htmlword_spacingCSS Property Value - 如何word-spacing:20px;

CSS Property Value - 如何word-spacing:20px;

我们想知道如何word-spacing:20px;


<html>

<head>
  
  <style>
.two {word-spacing:20px;}
.three {word-spacing:-1px;}
  </style>
</head>

<body>
    <h1>word-spacing</h1>
    <p class="one">There is a standard gap between each word</p>
    <p class="two">There is a 20 pixel gap between each word</p>
    <p class="three">There is a -1 pixel gap between each word</p>
</body>
</html>