最新的Web开发教程
 

Style widows Property

<Style对象

更改寡妇和检查打印或打印预览:

<html>
<head>
<script>
function ChangeWidows() {
    document.getElementById("p1").style.widows = document.getElementById("widows").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 {
    .widows {
        widows:2;
    }
}
</style>
</head>
<body>

<div class="othercontent">
<input id="widows" value="2">
<button onclick="ChangeWidows();">Change widows</button>

<p style="font-size:120%" id="p1">
Change widows 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>

<div class="othercontent">

</body>
</html>
试一试»

定义和用法

寡妇属性设置或返回线的最小数目为必须在页面的顶部是可见的元件(for printing or print preview)

寡妇属性只影响块级元素。

Tip:寡妇:5意味着至少有5条线必须低于分页符可见。

Tip:请参阅孤儿属性来设置或返回的最小行数必须在页面底部是可见的元素。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

寡妇财产在Internet Explorer,Opera和Chrome浏览器的支持。

注:在Firefox或Safari不支持寡妇财产。 该物业不支持IE7和更早版本。 IE8需要!DOCTYPE。 IE9后来有充分的支持。


句法

返回寡妇财产:

object .style.widows

将widows属性:

object .style.widows=" 属性值
描述
number 它指定的可见线的最小数目的整数。 负值是不允许的。 默认值是2
initial 将此属性设置为默认值。 阅读关于初始
inherit 继承其父元素此属性。 阅读关于继承

技术细节

默认值: 2
返回值: 一个字符串,表示线的最小数目来打印在页面的顶部
CSS版本 CSS2

<Style对象