The page-break-after property is used in CSS and certain HTML elements. It adjusts page breaks after the current element. To adjust page breaks before an element, use page-break-before.
Values
auto- Initial value. Automatic page breaks (neither forced nor forbidden).always- Always force page breaks after the element. (Note: This is the only value Firefox supports.)avoid- Avoid page breaks after the element.left- Force page breaks after the element so that the next page is formatted as a left page.right-Force page breaks after the element so that the next page is formatted as a right page.
HTML example:
<br style="page-break-after:always;" /> TEXT </p>
CSS example:
br {
page-break-after:always;
}