Style pageBreakInside 屬性
Style 對(duì)象定義和用法
pageBreakInside 屬性設(shè)置或返回元素內(nèi)的分頁(yè)行為(用于打印或打印預(yù)覽)。
注意:pageBreakInside 屬性不會(huì)影響絕對(duì)定位元素。
語(yǔ)法
設(shè)置 pageBreakInside 屬性:
Object.style.pageBreakInside="auto|avoid|inherit"
返回 pageBreakInside 屬性:
Object.style.pageBreakInside
值 | 描述 |
---|---|
auto | 默認(rèn)。如果必要?jiǎng)t在元素內(nèi)插入分頁(yè)符。 |
avoid | 避免在元素內(nèi)插入分頁(yè)符。 |
inherit | pageBreakInside 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 pageBreakInside 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
注意:Firefox、Chrome 和 Safari 不支持 "avoid" 屬性值。
提示和注釋
提示:表格、浮動(dòng)元素和帶邊框的塊元素內(nèi)部應(yīng)避免分頁(yè)屬性。
實(shí)例
實(shí)例
在 id="footer" 的 <p> 元素內(nèi)避免分頁(yè)符:
<html>
<head>
<script>
function setPageBreak()
{
document.getElementById("footer").style.pageBreakInside="avoid";
}
</script>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p id="footer">This is a footer paragraph.</p>
<button type="button" onclick="setPageBreak()">Avoid page-break inside footer paragraph</button>
</body>
</html>
<head>
<script>
function setPageBreak()
{
document.getElementById("footer").style.pageBreakInside="avoid";
}
</script>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p id="footer">This is a footer paragraph.</p>
<button type="button" onclick="setPageBreak()">Avoid page-break inside footer paragraph</button>
</body>
</html>
嘗試一下 ?
Style 對(duì)象
更多建議: