Style orphans 屬性
Style 對(duì)象定義和用法
orphans 屬性設(shè)置或返回一個(gè)元素必須在頁(yè)面底部的可見行的最小數(shù)量(用于打印或打印預(yù)覽)。
orphans 屬性僅影響塊級(jí)元素。
提示:orphans:5 意味著至少有 5 行必須在分頁(yè)符上面可見。
提示:widows 屬性設(shè)置或返回一個(gè)元素必須在頁(yè)面頂部的可見行的最小數(shù)量。
語(yǔ)法
設(shè)置 orphans 屬性:
Object.style.orphans="number|inherit"
返回 orphans 屬性:
Object.style.orphans
值 | 描述 |
---|---|
number | 一個(gè)規(guī)定可見行的最小數(shù)量的整數(shù)。默認(rèn)值是 2。 |
inherit | orphans 屬性的值從父元素繼承。 |
瀏覽器支持
只有 Opera 支持 orphans 屬性。
實(shí)例
實(shí)例
更改打印或打印預(yù)覽的 orphans 屬性:
<html>
<head>
<script>
function ChangeOrphans()
{
document.getElementById("p1").style.orphans=document.getElementById("orphans").value;
}
</script>
<style>
.othercontent
{
width:400px;
border-top:19cm solid #c3c3c3;
}
@page
{
/* set size of printed page */
size:21cm 27cm;
margin-top:2cm;
}
@media print
{
.orphans
{
orphans:2;
}
}
</style>
</head>
<body>
<div class="othercontent">
<input id="orphans" value="2">
<button onclick="ChangeOrphans();">Change orphans</button>
<p style="font-size:120%" id="p1">
Change orphans and see the print preview.<br>
Line 2<br>
Line 3<br>
Line 4<br>
Line 5<br>
Line 6<br>
Line 7<br>
Line 8<br>
</p>
</body>
</html>
<head>
<script>
function ChangeOrphans()
{
document.getElementById("p1").style.orphans=document.getElementById("orphans").value;
}
</script>
<style>
.othercontent
{
width:400px;
border-top:19cm solid #c3c3c3;
}
@page
{
/* set size of printed page */
size:21cm 27cm;
margin-top:2cm;
}
@media print
{
.orphans
{
orphans:2;
}
}
</style>
</head>
<body>
<div class="othercontent">
<input id="orphans" value="2">
<button onclick="ChangeOrphans();">Change orphans</button>
<p style="font-size:120%" id="p1">
Change orphans and see the print preview.<br>
Line 2<br>
Line 3<br>
Line 4<br>
Line 5<br>
Line 6<br>
Line 7<br>
Line 8<br>
</p>
</body>
</html>
嘗試一下 ?
Style 對(duì)象
更多建議: