--- title: white-space slug: Web/CSS/white-space tags: - CSS - CSS プロパティ - CSS テキスト - Reference - recipe:css-property - white-space browser-compat: css.properties.white-space translation_of: Web/CSS/white-space --- {{CSSRef}} **`white-space`** は CSS のプロパティで、要素内の{{Glossary("whitespace", "ホワイトスペース")}}をどのように扱うかを設定します。 {{EmbedInteractiveExample("pages/css/white-space.html")}} このプロパティは 2 つのことを指定します。 - ホワイトスペースを折り畳むかどうか、およびその方法。 - 行を自動折り返しの場面で折り返すことができるかどうか。 > **Note:** *要素の内部で*折り返しを行うには、代わりに {{CSSxRef("overflow-wrap")}}, {{CSSxRef("word-break")}}, {{CSSxRef("hyphens")}} を使用してください。 ## 構文 ```css /* キーワード値 */ white-space: normal; white-space: nowrap; white-space: pre; white-space: pre-wrap; white-space: pre-line; white-space: break-spaces; /* グローバル値 */ white-space: inherit; white-space: initial; white-space: revert; white-space: unset; ``` `white-space` プロパティは、以下の値の一覧から選択した単一のキーワードで指定します。 ### 値 - `normal` - : 連続するホワイトスペースがまとめられます。ソース内の改行文字もホワイトスペースとして扱われます。行ボックスを埋めるために、必要なら行を折り返します。 - `nowrap` - : `normal` と同じくホワイトスペースを詰めますが、行の折り返しは行いません。 - `pre` - : 連続するホワイトスペースはそのまま残され、行の折り返しは、ソース内の改行文字と、 {{HTMLElement("br")}} 要素でのみ行います。 - `pre-wrap` - : 連続するホワイトスペースはそのまま残されます。行の折り返しは、改行文字や {{HTMLElement("br")}} 要素のあるときか、行ボックスを埋めるのに必要なときに行います。 - `pre-line` - : 連続するホワイトスペースは詰められて 1 つになります。行の折り返しは、改行文字や {{HTMLElement("br")}} 要素のあるときか、行ボックスを埋めるのに必要なときに行われます。 - `break-spaces` - : 下記の点を除いて、動作は `pre-wrap` と同じです。 - そのまま残された連続するホワイトスペースは、行末にあるものを含め、空間を占有します。 - 残されたそれぞれのホワイトスペースの後で、ホワイトスペースの間を含め、改行する可能性があります。 - そのような残された空白は空間を占有し、ぶら下がらず、ボックスの内在の寸法 (min-content および max-content の大きさ) に影響します。 次の表に、`white-space` 値の動作をまとめます。
改行 | 空白とタブ文字 | テキストの折り返し | 行末の空白 | 行末のその他の空白区切り | |
---|---|---|---|---|---|
normal |
まとめる | まとめる | 折り返す | 除去 | ぶら下げる |
nowrap |
まとめる | まとめる | 折り返さない | 除去 | ぶら下げる |
pre |
そのまま | そのまま | 折り返さない | そのまま | 折り返さない |
pre-wrap |
そのまま | そのまま | 折り返す | ぶら下げる | ぶら下げる |
pre-line |
そのまま | まとめる | 折り返す | 除去 | ぶら下げる |
break-spaces |
そのまま | そのまま | 折り返す | 折り返す | 折り返す |
要素内での改行 ```css pre { white-space: pre-wrap; } ```操作
#### HTML ```html hiddenp { white-space: }``` ```css hidden .box { width: 300px; padding: 16px; border-radius: 10px; } #css-code { background-color: rgb(220, 220, 220); font-size: 16px; font-family: monospace; } #css-code select { font-family: inherit; } #results { background-color: rgb(230, 230, 230); overflow-x: scroll; height: 400px; white-space: normal; font-size: 14px; } ``` ```js hidden var select = document.querySelector("#css-code select"); var results = document.querySelector("#results p"); select.addEventListener("change", function(e) { results.setAttribute("style", "white-space: "+e.target.value); }) ``` ```htmlLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
``` #### 結果 {{EmbedLiveSample("In_action", "100%", 500)}} ## 仕様書 {{Specifications}} ## ブラウザーの互換性 {{Compat}} ## 関連情報 - *内部での*折り返しを定義するプロパティ: {{CSSxRef("overflow-wrap")}}, {{CSSxRef("word-break")}}, {{CSSxRef("hyphens")}}