widows CSS property sets the minimum number of lines in a block container that must be shown at the top of a page , region, or column .

/* <integer> values */
widows: 2;
widows: 3;
/* Global values */
widows: inherit;
widows: initial;
widows: unset;
					

In typography, a widow is the last line of a paragraph that appears alone at the top of a page. (The paragraph is continued from a prior page.)

句法

<integer>

The minimum number of lines that can stay by themselves at the top of a new fragment after a fragmentation break. The value must be positive.

形式定义

初始值 2
适用于 block container elements
继承 yes
计算值 如指定
动画类型 discrete

形式句法

<integer>
					

范例

Controlling column widows

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

div {
  background-color: #8cffa0;
  columns: 3;
  widows: 2;
}
p {
  background-color: #8ca0ff;
}
p:first-child {
  margin-top: 0;
}
					

结果

规范

规范 状态 注释
CSS Fragmentation Module Level 3
The definition of 'widows' in that specification.
候选推荐 Extends widows to apply to any type of fragment, including pages, regions, or columns.
CSS Multi-column Layout Module
The definition of 'widows' in that specification.
工作草案 Recommendations to consider widows in relation to columns.
CSS Level 2 (Revision 1)
The definition of 'widows' in that specification.
推荐 初始定义。

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
widows Chrome 完整支持 25 Edge 完整支持 12 Firefox 不支持 No IE 完整支持 8 Opera 完整支持 9.2 Safari 完整支持 1.3 WebView Android 完整支持 ≤37 Chrome Android 完整支持 25 Firefox Android 不支持 No Opera Android 完整支持 14 Safari iOS 完整支持 1 Samsung Internet Android 完整支持 1.5

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: