word-breakプロパティは、W3Cで審議中の仕様をInternet Explorerが独自に採用したもので、
表示範囲に合わせて改行するか、単語の切れ目で改行するかなど、文の改行の仕方について指定する際に使用します。
単語の途中で改行するかどうかを指定するword-wrapプロパティとの使い分けについてですが、
word-wrapプロパティは、文の改行というより、
長い英単語を途中で改行させたくない場合に使用するもののようです。また、日本語の単語に対しては無効なようです。
word-breakプロパティは、CSS3で標準採用されるかもしれません。
p.sample1 {width:150px; background-color:#99cc00; word-break: normal;}
p.sample2 {width:150px; background-color:#99cc00; word-break: break-all;}
p.sample3 {width:150px; background-color:#99cc00; word-break: keep-all;}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p class=”sample1″>
英語等は単語の途中では改行せず、単語の切れ目で改行されます。日本語・中国語・韓国語等は表示範囲に合わせて改行されます。このため単語の途中で改行されることもあります。<br>
Default. Allows line breaking within words.
</p>
<p class=”sample2″>
言語に関係なく表示範囲に合わせて改行されます。このため単語の途中で改行されることもあります。<br>
Behaves the same as normal for Asian text, yet allows the line to break arbitrarily for non-Asian text. This value is suited to Asian text that contains some excerpts of non-Asian text.
</p>
<p class=”sample3″>
言語に関係なく単語の途中では改行せず、単語の切れ目で改行されます。<br>
Does not allow word breaking for Chinese, Japanese, and Korean. Functions the same way as normal for all non-Asian languages. This value is optimized for text that includes small amounts of Chinese, Japanese, or Korean.
</p>
</body>
</html>
英語等は単語の途中では改行せず、単語の切れ目で改行されます。日本語・中国語・韓国語等は表示範囲に合わせて改行されます。このため単語の途中で改行されることもあります。
Default. Allows line breaking within words.
言語に関係なく表示範囲に合わせて改行されます。このため単語の途中で改行されることもあります。
Behaves the same as normal for Asian text, yet allows the line to break arbitrarily for non-Asian text. This value is suited to Asian text that contains some excerpts of non-Asian text.
言語に関係なく単語の途中では改行せず、単語の切れ目で改行されます。
Does not allow word breaking for Chinese, Japanese, and Korean. Functions the same way as normal for all non-Asian languages. This value is optimized for text that includes small amounts of Chinese, Japanese, or Korean.