1. Home
  2. スタイルシート CSS
  3. テキスト・フォント
  4. 単語の間隔を指定する

単語の間隔を指定する


word-spacing: ***;

ブラウザ
IE6
Fx
Sf
Cr
O
特性
word-spacing

word-spacing は、単語と単語の間隔を指定するプロパティです。



p {
word-spacing: 0.5em;
}


プロパティ名 説明
word-spacing 数値+単位(em 等) 間隔の大きさを指定

初期値は normal(標準)です。

メモ

一般的なブラウザでは、文章中の半角スペースを単語の区切りとして解釈するようです。


使用例


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>文書のタイトル</title>

<style type="text/css">

p.example1 { word-spacing: 0.3em; }
p.example2 { word-spacing: 1em; }
p.example3 { word-spacing: -0.2em; }

</style>

</head>
<body>

<p>CSS Codes and Examples</p>
<p class="example1">CSS Codes and Examples</p>
<p class="example2">CSS Codes and Examples</p>
<p class="example3">CSS Codes and Examples</p>

</body>
</html>

表示例

CSS Codes and Examples

CSS Codes and Examples

CSS Codes and Examples

CSS Codes and Examples


テキスト・フォント

ページの先頭へ


inserted by FC2 system