How to add a page break to a HTML page
This is very useful if you have a web based application and you need to print multiple pages of information:
HR {
page-break-after: always;
}
Then just add a <hr> after each page that you want printed.
This is very useful if you have a web based application and you need to print multiple pages of information:
HR {
page-break-after: always;
}
Then just add a <hr> after each page that you want printed.