I want to insert a page break when users print my web page.
IE 7, Mozilla 3.0 , any Chrome
You can use the CSS page-break-before or page-break-after properties in a print media style sheet to achieve this.
For example:
<style>
@media print {
table {
page-break-after: always;
}
}
</style>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With