CSS Property Value How to - word-spacing:20px;








Question

We would like to know how to word-spacing:20px;.

Answer


<!--  w ww.java 2  s  .c  o m-->
<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>

The code above is rendered as follows: