- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - orphans 属性
在 CSS 中,orphans 属性用于控制文本块中的最小行数,这些行数必须在页面、区域或列的底部显示,然后才能发生分页符或列分隔符。它通常用于控制打印文档或多列布局的分页符和分页的上下文。
如果块底部的行数小于 orphans 属性的值,则将块移动到下一页或下一列,以确保一起显示指定的行数。
根据排版,orphan 是单独出现在页面底部的段落的第一行;当段落在下一个新页面上继续时。
可能的值
- <integer>:指定在分段中断之前可以在分段底部显示的行数。它只应具有正值。默认值为 2。
适用于
所有块级元素。
DOM 语法
object.style.orphans = "3"
此属性通常与 widows 属性结合使用,该属性控制必须在页面或列顶部显示的最小行数。孤儿和寡妇共同帮助确保在分页过程中指定数量的内容保持在一起,从而提高打印文档或多列布局的可读性和流畅性。
Firfox 浏览器不支持 orphans。
CSS 孤立项 - 整数值
下面是一个示例,显示了 orphans CSS 属性的用法,其中 orphans 值通过类声明 (.orphan-demo) 传递:
<html>
<head>
<style>
div.orphan-demo {
background-color: tomato;
height: 170px;
columns: 3;
orphans: 3;
padding: 5px;
}
p {
background-color: lightyellow;
}
p:first-child {
margin-top: 0;
}
</style>
</head>
<body>
<h1>Orphans property</h1>
<div class="orphan-demo">
<p>Paragraph one that shows some text having just one line.</p>
<p>
Paragraph two in the same div "orphans-demo", with some styling applied.
Testing for the working of orphans property of CSS.
There are three lines in this paragraph.
Paragraph two having few more lines for some extra content for the testing purpose.
</p>
<p>
Paragraph three for some extra text for the testing purpose.
Second line in the third paragraph to test the orphans property.
</p>
</div>
</body>
</html>
在上面的例子中:
- 在 div 元素 (orphan-demo) 上定义了一个类,具有 CSS 样式,例如 background-color、height、padding、column 和 orphans。
- div 分为三列,orphans 值设置为 3。
- 在父 div 下添加了三个 P 元素。
- 输出基于 Orphans 值的值(在本例中为 3),并且随着片段的中断和段落在下一个块中相应地继续。
下面是一个示例,显示了 orphans CSS 属性的用法,其中 orphans 值作为继承和 id 声明传递:
<html>
<head>
<style>
#orphan-demo {
columns: 3;
column-gap: 5em;
orphans: inherit;
}
div {
background-color: green;
padding: 5px;
}
p {
background-color: antiquewhite;
}
span {
font-style: italic;
color: green;
}
</style>
</head>
<body>
<div id="orphan-demo">
<p>
Paragraph one that shows some text having just one line.
</p>
<p>
<span>
Paragraph two in the same div, with some styling applied.
Testing for the working of orphans property of CSS.
There are three lines in this paragraph.
Paragraph two having few more lines for some extra content for the testing purpose.
The orphans CSS property is used to set the minimum
number of line on the old page.
</span>
</p>
<p>
Paragraph three for some extra text for the testing purpose.
Second line in the third paragraph.
Testing for the orphans property
which takes up an integer value
or initial / inherit values.
</p>
<p>
Paragraph four in the third column of the page.
Number of lines in this paragaraph is two.
Testing for the orphans CSS property
which takes up an integer value
or initial / inherit values.
</p>
</div>
</body>
</html>
- id 定义并应用于 div 元素 (#orphan-demo),具有 CSS 样式,例如 column、column-gap 和 orphans。
- div 分为三列,孤立值设置为 Inherit,它继承了父级的默认值。
- 在父 div 下添加了四个 p 元素。
- 输出基于 Orphans 的值(在本例中为 Inherit),并且随着片段的中断和段落在下一个块中相应地继续。
CSS 孤立项 - 媒体打印
下面是一个示例,显示了孤立 CSS 属性的用法,其中孤立值通过媒体查询(@media打印)设置为<整数>:
<html>
<head>
<style>
@media print {
p {
orphans: 3;
columns: 2;
column-gap: 5em;
}
button {
display: none;
}
}
</style>
</head>
<body>
<article>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequatur
facilis vitae voluptatibus odio consequuntur optio placeat? Id, nam sequi
aut in dolorem dolores, laudantium, quasi totam ipsam aliquam quibusdam
velit. Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequatur
facilis vitae voluptatibus odio consequuntur optio placeat? Id, nam sequi
aut in dolorem dolores, laudantium, quasi totam ipsam aliquam quibusdam
velit. Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequatur
facilis vitae voluptatibus odio consequuntur optio placeat? Id, nam sequi
aut in dolorem dolores, laudantium, quasi totam ipsam aliquam quibusdam
velit. Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequatur
facilis vitae voluptatibus odio consequuntur optio placeat? Id, nam sequi
aut in dolorem dolores, laudantium, quasi totam ipsam aliquam quibusdam
velit.
</p>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequatur
facilis vitae voluptatibus odio consequuntur optio placeat? Id, nam sequi
aut in dolorem dolores, laudantium, quasi totam ipsam aliquam quibusdam
velit.
</p>
</article>
<button>Print</button>
<script>
const button = document.querySelector("button");
button.addEventListener("click", () => {
window.print();
});
</script>
</body>
</html>
- 在打印模式下,使用 CSS 样式(如 column、column-gap 和 orphans)定义并应用于 p 元素。
- 单击时会有一个按钮“打印”,该按钮的孤立值将应用于内容。
- 旧部分显示最后一段的前三行。