当前位置: 首页 > 文档资料 > CSS 入门教程 >

orphans

优质
小牛编辑
122浏览
2023-12-01

描述 (Description)

orphans属性用于设置必须出现在页面底部的元素中的最小行数。

可能的值 (Possible Values)

  • integer - 给定的数字设置页面底部允许的最小行数。

适用于 (Applies to)

所有块级元素。

DOM语法 (DOM Syntax)

object.style.orphans = "10"

例子 (Example)

这是一个例子 -

<html>
   <head>
      <style type = "text/css">
         p {orphans: 3;}
         h1 {orphans: 5;}
      </style>
   </head>
   <body>
      <p>xnip.cn</p>
      <h1>xnip.cn</h1>
   </body>
</html>