如何在 JavaScript 中设置必须在页面顶部可见的元素的最小行数?

javascriptobject oriented programmingfront end technology

使用 JavaScript 中的 orphans  属性设置必须在页面顶部可见的元素的最小行数。您可以尝试运行以下代码来了解如何实现 orphans 属性 −

document.getElementById("p").style.orphans

这是返回 orphans 属性的方法 −

var res = object.style.orphans;

这是设置 orphans 属性的方法 −

object.style.orphans='number|initial|inherit'

相关文章