Insert a page break when printing in IE

Using CSS it’s possible to control when page breaks appear.

p {
    page-break-after : always;
}

Share