--- title: orphans slug: Web/CSS/orphans tags: - Вёрстка - печать - разрыв страницы - фрагментация translation_of: Web/CSS/orphans ---
Свойство CSS orphans
устанавливает минимальное число строк в блочном контейнере, которое должно быть показано внизу страницы, региона или столбца.
/* <integer> значения */
orphans: 2;
orphans: 3;
/* Глобальные значения */
orphans: inherit;
orphans: initial;
orphans: unset;
В типографии, orphan это первая линия абзаца, которая отображается внизу страницы. (Абзац продолжается на следующей странице.)
{{cssinfo}}
<div>
<p>This is the first paragraph containing some text.</p>
<p>This is the second paragraph containing some more text than the first one. It is used to demonstrate how widows work.</p>
<p>This is the third paragraph. It has a little bit more text than the first one.</p>
</div>
div {
background-color: #8cffa0;
height: 150px;
columns: 3;
orphans: 3;
}
p {
background-color: #8ca0ff;
}
p:first-child {
margin-top: 0;
}
{{EmbedLiveSample("Пример", 380, 150)}}
{{Compat}}