letter-spacing

プロパティの説明

letter-spacingは、文字間隔を指定するプロパティです。全ての要素に指定することができます。

指定できる値

normal
標準設定。文字間隔なしの状態にする。
CSSで使える数値
1emなど。

サンプル

サンプルページ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "https://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">

<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <meta http-equiv="Content-Style-Type" content="text/css">
 <title>サンプルページ</title>
 <style type="text/css">
 <!--
 .l1{
 letter-spacing:1em;
 }
 -->
 </style>
</head>

<body>
 <h1>サンプルページ</h1>
 <p>通常の文字間隔。</p>
 <p class="l1">文字間隔を指定しています。</p>
</body>

</html>