Loose-Info.com
Last Update 2007/01/16
TOP - CSS1(Cascading Style Sheets, level 1) - word-spacing

単語間の間隔を設定します。標準はキーワードnormalを設定します。

(例)
<HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE>テスト</TITLE> <STYLE type="text/css"> <!-- P.test1 {word-spacing: normal} P.test2 {word-spacing: 6px} P.test3 {word-spacing: 18px} --> </STYLE> </HEAD> <BODY> <P class="test1">Internet Explorer 6</P> <P class="test2">Internet Explorer 6</P> <P class="test3">Internet Explorer 6</P> </BODY> </HTML>