目录

CSS orphans 属性


示例

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

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

定义和用法

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

提示:另请参阅 widows属性。

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

浏览器支持

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

Property
orphans 25.0 8.0 Not supported 3.1 10.0


CSS 语法

orphans: integer|initial|inherit;

属性值

Value Description
integer Specifies the minimum number of lines that must be left at the bottom 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