Home → References → CSS Properties →
CSS Property: page-break-after
Used in paged media. Specifies how a page break should be applied after a block box, forcing a new page box.
HTML Dog is hosted by Titan Internet
Possible Values
inheritauto(default) - Does not force or forbid a page break.always- Always forces a page break.avoid- Forbids a page break.left- Forces either one or two page breaks so that the next page is a left page.right- Forces either one or two page breaks so that the next page is a right page.
Example
#europe { page-break-after: left; }

