HTML - DOM Style 对象 pageBreakInside 属性



HTML DOM Style 对象 **pageBreakInside** 属性设置或返回元素在打印或打印预览期间的分页符行为。

语法

设置 pageBreakInside 属性
object.style.pageBreakInside= "auto | avoid | initial | inherit";
获取 pageBreakInside 属性
object.style.pageBreakInside;

属性值

描述
auto 这是默认值,根据需要在元素内插入分页符。
avoid 避免在元素内插入分页符。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示打印时元素内的分页符行为。

HTML DOM Style 对象“pageBreakInside”属性示例

以下示例避免在 id 为 result 的 p 元素内插入分页符。

<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Style Object pageBreakInside Property
    </title>
</head>
<body>    
    <h3>
        You need to save this code in 
        your system to see changes
    </h3>
    <p>
        Click to see effects in print 
        or print preview option.
    </p>
    <button onclick="fun()">Click</button>
    <p>Welcome to Tutorials Point.</p>
    <p id="result">
        No page break inside this paragraph.
    </p>   
    <script>
        function fun() {
            document.getElementById("result")
                .style.pageBreakInside = "avoid";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
pageBreakInside 是 1 是 12 是 19 是 1.3 是 7
html_dom_style_object_reference.htm
广告