--- title: line-break slug: Web/CSS/line-break tags: - Asian - CSS - CSS Property - CSS Text - NeedsExample - Reference - i18n - l10n - 'recipe:css-property' - 日本語処理 - 禁則処理 translation_of: Web/CSS/line-break ---
line-break
は CSS のプロパティで、中国語、日本語、韓国語 (CJK) のテキストにおいて、句読点や記号を用いた場合の改行規則を設定します。
/* キーワード値 */ line-break: auto; line-break: loose; line-break: normal; line-break: strict; line-break: anywhere; /* グローバル値 */ line-break: inherit; line-break: initial; line-break: unset;
auto
loose
normal
strict
anywhere
句読点や温存された空白、単語の途中も含め、すべての文字の間で折り返しできるようにし、 GL, WJ, ZWJ の文字クラスや、 {{cssxref("word-break")}} プロパティでもたらされる折り返しの禁止を一切無視します。どの折り返しの機会も優先されることはありません。ハイフネーションは適用されません。
{{cssinfo}}
"々", "ぁ", "。" の前で折り返しが行われるかどうかを確認してください。
<div lang="ja"> <p class="wrapbox auto">auto:<br>そこは湖のほとりで木々が輝いていた。<br>その景色に、美しいなぁと思わずつぶやいた。</p> <p class="wrapbox loose">loose:<br>そこは湖のほとりで木々が輝いていた。<br>その景色に、美しいなぁと思わずつぶやいた。</p> <p class="wrapbox normal">normal:<br>そこは湖のほとりで木々が輝いていた。<br>その景色に、美しいなぁと思わずつぶやいた。</p> <p class="wrapbox strict">strict:<br>そこは湖のほとりで木々が輝いていた。<br>その景色に、美しいなぁと思わずつぶやいた。</p> <p class="wrapbox anywhere">anywhere:<br>そこは湖のほとりで木々が輝いていた。<br>その景色に、美しいなぁと思わずつぶやいた。</p> </div>
.wrapbox { width: 10em; margin: 0.5em; white-space: normal; vertical-align: top; display: inline-block; } .auto { line-break: auto; } .loose { line-break: loose; } .normal { line-break: normal; } .strict { line-break: strict; } .anywhere { line-break: anywhere; }
{{ EmbedLiveSample('Setting_text_wrapping', 200, 400) }}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS3 Text', '#line-break-property', 'line-break')}} | {{Spec2('CSS3 Text')}} | 初回定義 |
{{Compat("css.properties.line-break")}}