--- title: overflow-wrap slug: Web/CSS/overflow-wrap tags: - CSS - CSS テキスト - CSS プロパティ - Reference translation_of: Web/CSS/overflow-wrap ---
overflow-wrap
は CSS のプロパティで、インライン要素に対して、テキストが行ボックスをあふれないように、ブラウザーが不可分の文字列の途中で改行を入れるかどうかの設定を適用します。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
メモ: {{cssxref("word-break")}} とは対照的に、 overflow-wrap
は単語全体があふれずに行内に配置できない場合にのみ、改行を生成します。
このプロパティはもともと、標準外かつ接頭辞のない word-wrap
と呼ばれる Microsoft 拡張であり、多くのブラウザーはこの名前で実装していました。 overflow-wrap
に改名されたため、 word-wrap
は別名になりました。
/* キーワード値 */ overflow-wrap: normal; overflow-wrap: break-word; overflow-wrap: anywhere; /* グローバル値 */ overflow-wrap: inherit; overflow-wrap: initial; overflow-wrap: unset;
overflow-wrap
プロパティは、下記の値一覧中の一つのキーワードで指定します。
normal
anywhere
break-word
anywhere
の値と同様に、行内にその他の分割可能な位置がない場合、通常は分割可能でない単語が任意の場所で分割されますが、コンテンツの最小固有寸法を計算する時に、単語分割によって導入された折り返し可能位置が考慮されません。この例は、長い単語が分割されるときの overflow-wrap
, word-break
, and hyphens
の結果を比較するものです。
<p>They say the fishing is excellent at Lake <em class="normal">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>normal</code>)</p> <p>They say the fishing is excellent at Lake <em class="ow-anywhere">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>overflow-wrap: anywhere</code>)</p> <p>They say the fishing is excellent at Lake <em class="ow-break-word">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>overflow-wrap: break-word</code>)</p> <p>They say the fishing is excellent at Lake <em class="word-break">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>word-break</code>)</p> <p>They say the fishing is excellent at Lake <em class="hyphens">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>hyphens</code>, without <code>lang</code> attribute)</p> <p lang="en">They say the fishing is excellent at Lake <em class="hyphens">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>hyphens</code>, English rules)</p> <p class="hyphens" lang="de">They say the fishing is excellent at Lake <em class="hyphens">Chargoggagoggmanchauggagoggchaubunagungamaugg</em>, though I've never been there myself. (<code>hyphens</code>, German rules)</p>
p { width: 13em; margin: 2px; background: gold; } .ow-anywhere { overflow-wrap: anywhere; } .ow-break-word { overflow-wrap: break-word; } .word-break { word-break: break-all; } .hyphens { hyphens: auto; }
{{ EmbedLiveSample('Example', '100%', 260) }}
仕様書 | 状態 | 備考 |
---|---|---|
{{ SpecName('CSS3 Text', '#propdef-overflow-wrap', 'overflow-wrap') }} | {{ Spec2('CSS3 Text') }} | 初回定義 |
{{cssinfo}}
{{Compat("css.properties.overflow-wrap")}}