--- 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("Example", 380, 150)}}
Спецификация | Статус | Комментарий |
---|---|---|
{{SpecName('CSS3 Fragmentation', '#widows-orphans', 'orphans')}} | {{Spec2('CSS3 Fragmentation')}} | Расширяет orphans для применения в любых фрагментах, включая страницы, регионы и столбцы. |
{{SpecName('CSS2.1', 'page.html#break-inside', 'orphans')}} | {{Spec2('CSS2.1')}} | Первое определение. |
{{Compat("css.properties.orphans")}}