文字の間隔を空ける
letter-spacingプロパティーを使うと、文字の間隔を指定することができます。Windows版IEにはちょっとバグがありますね。
<!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>TIPS036 文字の間隔を空ける</title>
<style type="text/css">
<!--
body { background-color: #FFC; color: black; }
h1 { color: #844; letter-spacing: 24px; }
p { font-weight: bold; letter-spacing: 1em; }
-->
</style>
</head>
<body>
<h1>文字の間隔を空ける</h1>
<p>letter-spacingプロパティーを使うと、文字の間隔を指定することができます。Windows版IEにはちょっとバグがありますね。</p>
</body>
</html>