--- title: widows slug: Web/CSS/widows translation_of: Web/CSS/widows ---
CSS属性 widows
可以用来设置一个块级容器在新的分页,区域或者列的顶部需要结合在一起的最小行数。
/* <integer> values */ widows: 2; widows: 3; /* Global values */ widows: inherit; widows: initial; widows: unset;
在排版中,widow 指的是在新页面顶部单独出现的段落的最后一行。(这一行来自于上一个页面的段落)
{{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; columns: 3; widows: 2; } p { background-color: #8ca0ff; } p:first-child { margin-top: 0; }
{{EmbedLiveSample("Controlling_column_widows", 400, 160)}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Fragmentation', '#widows-orphans', 'widows')}} | {{Spec2('CSS3 Fragmentation')}} | Extends widows to apply to any type of fragment, including pages, regions, or columns. |
{{SpecName('CSS3 Multicol', '#filling-columns', 'widows')}} | {{Spec2('CSS3 Multicol')}} | Recommendations to consider widows in relation to columns. |
{{SpecName('CSS2.1', 'page.html#break-inside', 'widows')}} | {{Spec2('CSS2.1')}} | Initial definition. |
{{Compat("css.properties.widows")}}