You are here : cssCSS 3page-break-before

page-break-before - CSS 3

The page-break-before property sets whether a page break should occur BEFORE a specified element.Note:  You cannot use this property on an empty 
or on absolutely positioned elements.


Syntax

page-break-before: auto|always|avoid|left|right|initial|inherit;


Example

@media print
{
	   
	h1 {page-break-before: always;}
}


Output / Return Value


Limitations


Alternatives / See Also


Reference