The word-spacing property
The quick brown fox jumps over the lazy dog.
word-spacingプロパティーを使うと、文字の間隔を指定することができます。日本語のテキストでは、あまり意味がありません。英語のように単語をスペースで区切る言語向けのプロパティーです。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>単語の間隔を空ける</title>
<style type="text/css">
<!--
body { background-color: #FFC; color: black; }
h1 { color: #844; font: bold 2em Verdana;
word-spacing: 20px; }
p { font-weight: bold; word-spacing: 1em; }
-->
</style>
</head>
<body>
<h1>The word-spacing property</h1>
<p>The quick brown fox jumps over the lazy dog.</p>
<p>word-spacingプロパティーを使うと、文字の間隔を指定することができます。日本語のテキストでは、あまり意味がありません。英語のように単語をスペースで区切る言語向けのプロパティーです。</p>
</body>
</html>