Computer >> Computer tutorials >  >> Programming >> Javascript

Usage of letter-spacing property in CSS


The letter-spacing property is used to add or subtract space between the letters that make up a word. Possible values are normal or a number specifying space.

<html>
   <head>
   </head>
   <body>
      <p style = "letter-spacing:7px;">
         This text is having space between letters.
      </p>
   </body>
</html>