word-break: normal
The word-break property sets or retrieves line-breaking behavior within words, particularly where multiple languages appear in the object. The normal value is default. It allows line breaking within words.
word-breakは主にいくつかの言語が混在するページにおいて、それぞれの単語内でどのように改行を入れるかを指定する場合に利用するプロパティです。normalでは日本語や中国語、韓国語などは単語内の任意の文字が行末に来た場合その場所で改行し、英語などの場合は単語の前後で改行します。

word-break: break-all
The break-all value 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.
break-allを指定すると、言語を問わず単語内の任意の文字が行末に来た場合、その場所で改行します。上の英文で、単語の途中で改行している点に注意してください。

word-break: keep-all
The keep-all value 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.
keep-allを指定すると、言語を問わず単語の途中では改行をしません。日本語の場合、normalやbreak-allを指定すると、単語の途中であっても行末で改行しましたが、この例文ではそのような改行にならない点に注意してください。