Перейти к содержанию

overflow-wrap

Свойство overflow-wrap применяется к встроенным элементам, определяя, должен ли браузер вставлять разрывы строк в неразрывную строку, чтобы текст не переполнял ее строку.

Демо

Текст

Синтаксис

1
2
3
4
5
6
7
8
9
/* Keyword values */
overflow-wrap: normal;
overflow-wrap: break-word;
overflow-wrap: anywhere;

/* Global values */
overflow-wrap: inherit;
overflow-wrap: initial;
overflow-wrap: unset;

Значения

normal

Строки могут разрываться только в обычных точках разрыва слов (например, пробел между двумя словами).

anywhere

Во избежание переполнения неразрывная строка символов - например, длинное слово или URL-адрес - может быть разбита в любой точке, если в строке нет других приемлемых точек разрыва. В точке останова символ переноса не вставляется. Возможности мягкого переноса, представленные разрывом слов, учитываются при расчете собственных размеров минимального содержимого.

break-word

То же самое, что и в любом месте, с обычно неразрывными словами, которые можно разбивать в произвольных точках, если в строке нет других приемлемых точек разрыва, но возможности мягкого переноса, представленные разрывом слова, НЕ учитываются при вычислении внутренних размеров минимального содержимого.

Спецификация

Пример

 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
<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>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}

overflow-wrap

См. также

Ссылки

Комментарии