Word Spacing

This example demonstrates how to increase the white space between words in a paragraph:

HTML file: Displayed by browser:
<style>
p.demo {
    word-spacing: 30px;
}
</style>
<body>
<p>This is some text in a paragraph.</p>
</body>

This is some text in a paragraph.


Back buttonTable of ContentsNext button