Web Development Tutorials.com

How to specify the spacing between words in a paragraph with CSS


Click Here for CoffeeCup Website Design Software   GoDaddy.com Hosting & Servers

The below HTML and CSS code example shows you how to specify the word-spacing between words in a paragraph with CSS.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>this is the title of the web page</title>

<style type="text/css">

</style>

</head>
<body>

<p>
This is a paragraph with a default word-spacing.
</p>
<p style="word-spacing: 10px;">
This is a paragraph with a word-spacing attribute with a value of "10px".
</p>
<p style="word-spacing: 30px;">
This is a paragraph with a word-spacing attribute with a value of "30px".
</p>

</body>
</html>

The above HTML and CSS code makes the paragraphs below.

This is a paragraph with a default word-spacing.

This is a paragraph with a word-spacing attribute with a value of "10px".

This is a paragraph with a word-spacing attribute with a value of "30px".

Use the text editor below to practice controlling word-spacing with CSS.