文字と文字の間隔を指定します。
IE4 / IE5 / IE5.5 / IE6 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]{ letter-spacing : 値; }
値 | 初期値 | 意味 |
normal | ○ | 指定しない場合と同様になります。 |
数値+単位 | 間隔を指定します。単位例:px,em,ex | |
inherit | 親要素の値を継承します。 |
<html> <head> <title>サンプルコード</title> <style type="text/css"> #sample1 { letter-spacing : normal; } #sample2 { letter-spacing : 1em; } </style> </head> <body> <div id="sample1">letter-spacingサンプル1</div> <div id="sample2">letter-spacingサンプル2</div> </body> </html>