Style pageBreakInside 属性
Style 对象定义和用法
pageBreakInside 属性设置或返回元素内的分页行为(用于打印或打印预览)。
注意:pageBreakInside 属性不会影响绝对定位元素。
语法
设置 pageBreakInside 属性:
Object.style.pageBreakInside="auto|avoid|inherit"
返回 pageBreakInside 属性:
Object.style.pageBreakInside
值 | 描述 |
---|---|
auto | 默认。如果必要则在元素内插入分页符。 |
avoid | 避免在元素内插入分页符。 |
inherit | pageBreakInside 属性的值从父元素继承。 |
浏览器支持
所有主要浏览器都支持 pageBreakInside 属性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有规定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
注意:Firefox、Chrome 和 Safari 不支持 "avoid" 属性值。
提示和注释
提示:表格、浮动元素和带边框的块元素内部应避免分页属性。
实例
实例
在 id="footer" 的 <p> 元素内避免分页符:
<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 对象