Letter Spacing and Word Spacing Styles

     

  • Letter Spacing Property:Provides the Space between the letters
  • Word Spacing Property:Provides the Space between the words
  •  

     

    Code:

    <html>
    <head>
    <title>This is CSS Internal style</title>
    <style type="text/css">
    Ls {letter-spacing: 0.2em;}
    ws {word-spacing: 2em;}
    </style>
    </head>
    <body>
    <p><ls>Letter Spacing</ls></p>
    <p><ws>Word Spacing</ws></p>
    </body>
    </html>

     

     

    Output:

    Download The Coding Along With Web Page