widows

widows CSS 属性设置块容器中必须显示在页面、区域或顶部的最小行数。

在排版中,寡妇行是指一个段落的最后一行单独出现在一页的顶部。(该段落从前一页继续)。

语法

css
/* <integer> values */
widows: 2;
widows: 3;

/* Global values */
widows: inherit;
widows: initial;
widows: revert;
widows: revert-layer;
widows: unset;

<integer>

可以在分段断开后单独保留在新片段顶部的最小行数。该值必须为正数。

正式定义

初始值2
应用于块容器元素
继承
计算值如指定
动画类型按计算值类型

正式语法

示例

控制列寡妇行

HTML

html
<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>

CSS

css
div {
  background-color: #8cffa0;
  columns: 3;
  widows: 2;
}

p {
  background-color: #8ca0ff;
}

p:first-child {
  margin-top: 0;
}

结果

规范

规范
CSS 分段模块级别 3
# widows-orphans
CSS 多列布局模块级别 1
# filling-columns

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅