HTML DOM Style pageBreakBefore 属性

2018-08-04 20:41 更新

Style pageBreakBefore 属性

Style 对象参考手册 Style 对象

定义和用法

pageBreakBefore 属性设置或返回元素前的分页行为(用于打印或打印预览)。

注意:pageBreakBefore 属性不会影响绝对定位元素。

语法

设置 pageBreakBefore 属性:

Object.style.pageBreakBefore="auto|always|avoid|emptystring|left|right|inherit"

返回 pageBreakBefore 属性:

Object.style.pageBreakBefore

描述
auto 默认。如果必要则在元素前插入分页符。
always 总是在元素前插入分页符。
avoid 避免在元素前插入分页符。
"" (empty string) 在元素前不插入分页符。
left 在元素前插入一个或两个分页符,一直到一张空白的左页为止。
right 在元素前插入一个或两个分页符,一直到一张空白的右页为止。
inherit pageBreakBefore 属性的值从父元素继承。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 pageBreakBefore 属性。

注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有规定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。


实例

实例

始终在每个 id="footer" 的 <p> 元素前设置分页符:

<html>
<head>
<script>
function setPageBreak()
{
document.getElementById("footer").style.pageBreakBefore="always";
}
</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()">Set page-break before footer paragraph</button>
<p>Click the button above and see the changes in print or print preview.</p>

</body>
</html>

尝试一下 »


Style 对象参考手册 Style 对象
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号