word-spacing

単語の間隔を指定します。


ブラウザ

E5 / IE6 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2

▲PageTop

書式

要素[.class名][#id名]{ word-spacing : 値; }

▲PageTop

指定できる値

初期値 意味
normal 通常の間隔(指定していないときと同様になります。)
数値+単位 間隔の大きさを指定します。数値には負の数も指定できます。単位例:px,em,ex,%
inherit 親要素の値を継承します。

▲PageTop

サンプル

ソースコード

<html>
  <head>
    <title>サンプルコード</title>
    <style type="text/css">
      #sample1 {
        word-spacing : normal;
      }
      #sample2 {
        word-spacing : 10px;
      }
      #sample3 {
        word-spacing : -10px;
      }
    </style>
  </head>
  <body>
    <div id="sample1">word-spacing sample 【nomal】</div>
    <div id="sample2">word-spacing sample 【10px】</div>
    <div id="sample3">word-spacing sample 【-10px】</div>
  </body>
</html>

表示結果

word-spacing sample 【nomal】
word-spacing sample 【10px】
word-spacing sample 【-10px】

▲PageTop