You are here : cssCSS 3page-break-inside

page-break-inside - CSS 3

The page-break-inside property sets whether a page break is allowed inside a specified element.Note:  You cannot use this property on absolutely positioned elements.


Syntax

page-break-inside: auto|avoid|initial|inherit;


Example

@media print
{
	   
	p {page-break-inside: avoid;}
}


Output / Return Value


Limitations


Alternatives / See Also


Reference