|
|
word-spacing・・・・・単語の間隔を指定する
word-spacingプロパティは、単語の間隔を指定する際に使用します。単語の間隔にはマイナスの値を指定することもできます。 ■値
■使用例スタイルシート部分は外部ファイル(sample.css)に記述。div.sample1 {word-spacing: 10px;}div.sample2 {word-spacing: 30px;} div.sample3 {word-spacing: -2px;} HTMLソース<html><head> <link rel="stylesheet" href="sample.css" type="text/css"> </head> <body> <div class="sample1">Wouldn't It Be Nice</div> <div class="sample2">Wouldn't It Be Nice</div> <div class="sample3">Wouldn't It Be Nice</div> </body> </html> ↓↓↓ ブラウザ上の表示Wouldn't It Be Nice
Wouldn't It Be Nice
Wouldn't It Be Nice
■関連項目
text-align・・・・・・・・・・・・・・・行揃えの位置・均等割付を指定する
text-justify・・・・・・・・・・・・・均等割付の形式を指定する(IEが独自に採用) vertical-align・・・・・・・・・・・・縦方向の揃え位置を指定する text-decoration・・・・・・・・・テキストの下線・上線・打ち消し線・点滅を指定する text-underline-position・・下線の表示位置を指定する(IE独自の仕様) text-indent・・・・・・・・・・・・・一行目のインデント幅を指定する text-transform・・・・・・・・・・テキストの大文字表示・小文字表示を指定する white-space・・・・・・・・・・・・・ソース中のスペース・タブ・改行の表示の仕方を指定する letter-spacing・・・・・・・・・・・文字の間隔を指定する word-spacing・・・・・・・・・・・・単語の間隔を指定する text-autospace・・・・・・・・・アルファベット等との間隔を指定する(IEが独自に採用) line-break・・・・・・・・・・・・・・・禁則処理のしかたを指定する(IEが独自に採用) word-break・・・・・・・・・・・・・・文の改行の仕方について指定する(IEが独自に採用) word-wrap・・・・・・・・・・・・・・単語の途中で改行するかどうかを指定する(IE独自の仕様) text-shadow・・・・・・・・・・・・テキストに影をつける |
|