aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/white-space/index.md
blob: 095ad06c5cd0491d757a4c574574c0464dc90f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
---
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` 値の動作をまとめます。

<table class="standard-table">
  <thead>
    <tr>
      <th></th>
      <th>改行</th>
      <th>空白とタブ文字</th>
      <th>テキストの折り返し</th>
      <th>行末の空白</th>
      <th>行末のその他の空白区切り</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th><code>normal</code></th>
      <td>まとめる</td>
      <td>まとめる</td>
      <td>折り返す</td>
      <td>除去</td>
      <td>ぶら下げる</td>
    </tr>
    <tr>
      <th><code>nowrap</code></th>
      <td>まとめる</td>
      <td>まとめる</td>
      <td>折り返さない</td>
      <td>除去</td>
      <td>ぶら下げる</td>
    </tr>
    <tr>
      <th><code>pre</code></th>
      <td>そのまま</td>
      <td>そのまま</td>
      <td>折り返さない</td>
      <td>そのまま</td>
      <td>折り返さない</td>
    </tr>
    <tr>
      <th><code>pre-wrap</code></th>
      <td>そのまま</td>
      <td>そのまま</td>
      <td>折り返す</td>
      <td>ぶら下げる</td>
      <td>ぶら下げる</td>
    </tr>
    <tr>
      <th><code>pre-line</code></th>
      <td>そのまま</td>
      <td>まとめる</td>
      <td>折り返す</td>
      <td>除去</td>
      <td>ぶら下げる</td>
    </tr>
    <tr>
      <th><code>break-spaces</code></th>
      <td>そのまま</td>
      <td>そのまま</td>
      <td>折り返す</td>
      <td>折り返す</td>
      <td>折り返す</td>
    </tr>
  </tbody>
</table>

> **Note:** **空白**と**その他の空白区切り**には違いがあります。以下のように定義されています。
>
> - 空白
>   - : 空白 (U+0020)、タブ (U+0009)、区切り文字 (改行など)。
> - その他の空白区切り
>   - : Unicode で定義されているその他の区切り文字で、空白として定義されているもの意外。
>
> ホワイトスペースが*ぶら下げる*とある場合、内在サイズを計算するときにボックスの大きさに影響することがあります。

## 公式定義

{{CSSInfo}}

## 形式文法

{{CSSSyntax}}

## 例

### 基本的な例

```css
code {
  white-space: pre;
}
```

### \<pre> 要素内での改行

```css
pre {
  white-space: pre-wrap;
}
```

<h3 id="In_action">操作</h3>

#### HTML

```html hidden
<div id="css-code" class="box">
  p { white-space:
  <select>
    <option>normal</option>
    <option>nowrap</option>
    <option>pre</option>
    <option>pre-wrap</option>
    <option>pre-line</option>
    <option>break-spaces</option>
  </select> }
</div>
<div id="results" class="box">
  <p>    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.</p>
</div>
```

```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);
})
```

```html
<p> 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.</p>
```

#### 結果

{{EmbedLiveSample("In_action", "100%", 500)}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- *内部での*折り返しを定義するプロパティ: {{CSSxRef("overflow-wrap")}}, {{CSSxRef("word-break")}}, {{CSSxRef("hyphens")}}