Style orphans 屬性
Style 對象定義和用法
orphans 屬性設置或返回一個元素必須在頁面底部的可見行的最小數(shù)量(用于打印或打印預覽)。
orphans 屬性僅影響塊級元素。
提示:orphans:5 意味著至少有 5 行必須在分頁符上面可見。
提示:widows 屬性設置或返回一個元素必須在頁面頂部的可見行的最小數(shù)量。
語法
設置 orphans 屬性:
Object.style.orphans="number|inherit"
返回 orphans 屬性:
Object.style.orphans
值 | 描述 |
---|---|
number | 一個規(guī)定可見行的最小數(shù)量的整數(shù)。默認值是 2。 |
inherit | orphans 屬性的值從父元素繼承。 |
瀏覽器支持
只有 Opera 支持 orphans 屬性。
實例
實例
更改打印或打印預覽的 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 對象
更多建議: