CSS Property: page-break-before
Used with paged media. How a page break should be applied before a block box, forcing a new page box.
Possible Values
Value | Description |
---|---|
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. |
auto | Does not force or forbid a page break. Default. |
inherit | |
initial | |
unset |
Example
#antarctica { page-break-before: always; }