如何使用 JavaScript 设置元素在页面中断时必须留在页面底部的最少行数?
使用 JavaScript 中的 orphans 属性来设置元素在页面中断时必须留在页面底部的最少行数。
您可以像这样返回 orphans 属性:
var res = object.style.orphans
像这样设置 orphans 属性:
object.style.orphans = 'number|initial|inherit'
以下是上面显示的属性值:
- number - 指定可见行的最小数量。
- Initial - 将属性设置为其默认值
- Inherit - 从父元素继承属性
广告