目录

CSS widows 属性


示例

打印时,每页底部至少显示 4 行,顶部至少显示 2 行:

@media print {
  orphans: 4;
  widows: 2;
}

定义和用法

这个widows属性指定必须保留在页面或列顶部的最小行数。

提示:另请参阅 orphans属性。

默认值: 2
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.widows = "3"

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
widows 25.0 8.0 Not supported 7.0 10.0


CSS 语法

widows: integer|initial|inherit;

属性值

Value Description
integer Specifies the minimum number of lines that must be left at the top of a page or column. Negative values are not allowed
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit