Open In App

HTML DOM | Style pageBreakBefore Property

The Style pageBreakBefore property is used for setting or returning the page-break behavior before an element in printing or print preview.
The Style pageBreakBefore property does not affect the absolutely positioned elements.

Syntax :



object.style.pageBreakBefore

Return Values: It returns a string, representing the page-break behavior before an element when printing.

Property Values :



object.style.pageBreakBefore = “auto | always | avoid | emptystring | left | right | initial | inherit”

Values Description:

Below program illustrates the Style pageBreakBefore property :

Example: Setting a page break before the <p> element with id=”footer”




<!DOCTYPE html>
<html>
  
<head>
    <title>Style pageBreakBefore Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Style pageBreakBefore Property</h2>
    <br>
  
    <p id="myfooter">Geeksforgeeks is a portal for geeks.</p>
  
    <p>For setting page break before footer paragraph, 
      double click the "Set Page Break" button: </p>
    <br>
  
    <button ondblclick="pagebreak()">Set Page Break</button>
  
    <script>
        function pagebreak() {
            document.getElementById("myfooter")
            .style.pageBreakBefore = "always";
        }
    </script>
  
</body>
  
</html>         

Output:

Note: In order to see the output, please save the code in HTML file and run it on your browser. The output will be seen when you will see the PRINT PREVIEW of that file.


Article Tags :