The page-break-after CSS property adjusts page breaks after the current element.
This properties applies to block elements that generate a box. It won’t apply on an empty <div> that won’t generate a box.
Note: this property is in progress of being replaced by the more generic break-after. This new property also handles column and region breaks and is syntactically compatible with page-break-after.
Before using page-break-after, check if you can use break-after instead. In the future page-break-after will be a mere alias for some values of it.
Initialauto
Applies toblock-level elements in the normal flow of the root element. UA may also apply it to other elements like table-row elements.
Inheritedno
Mediavisual, paged
Computed Valueas specified
Animatableno
Canonical orderthe unique non-ambiguous order defined by the formal grammar
Syntax
Formal syntax: auto | always | avoid | left | right
page-break-after: auto
page-break-after: always
page-break-after: avoid
page-break-after: left
page-break-after: right
page-break-after: inherit
Values
auto
Initial value. Automatic page breaks (neither forced nor forbidden).
always
Always force page breaks after the element.
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.