Open In App

HTML DOM | Style pageBreakAfter Property

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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

Syntax : To get the property:

object.style.pageBreakAfter

To set the property:

object.style.pageBreakAfter = "auto|always|avoid|emptystring|left|
right|initial|inherit"

Return Values: It returns a string that represents the page-break behavior after an element when printing

Property Values:

  • auto : It is used to insert a page break after the element if necessary.
  • always : It is used to insert a page break after before the element.
  • avoid : It is used to avoid a page after before an element.
  • emptystring : Page break is not inserted after the element.
  • left : It is used to insert one or two page breaks after the element, so the next page is considered a left page.
  • right : It is used to insert one or two page breaks after the element, so the next page is considered a right page.
  • initial : It is used to set this property to its default value.
  • inherit : It is used to inherit this property from its parent element.

Below program illustrates the Style pageBreakAfter property: 

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

HTML




<!DOCTYPE html>
<html>
<head>
  <title>Style pageBreakAfter Property in HTML</title>
  <style>
    h1 {
      color: green;
    }
    h2 {
      font-family: Impact;
    }
    body {
      text-align: center;
    }
  </style>
</head>
<body>
  <h1>GeeksforGeeks</h1>
  <h2>Style pageBreakAfter Property</h2>
  <br>
  <p id="myfooter">Geeksforgeeks is a portal for geeks.</p>
 
   
<p>For setting page break after 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.pageBreakAfter = "always";
    }
  </script>
</body>
</html>


Output:

  • Before Clicking the button: 

  • After clicking the button:

 

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. 

Supported Browsers: The browser supported by HTML DOM | Style pageBreakAfter Property are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 4
  • Firefox 1
  • Opera 7
  • Apple Safari 1.2


Last Updated : 08 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads