Print header/footer on all pages (Print Mode)
If you’re willing to switch over to tables for your layout (not necessarily ideal), you can do it with the <thead> and <tfoot> elements. They’ll print at the top and bottom of every page: <table> <thead> <!– Will print at the top of every page –> </thead> <tbody> <!– Page content –> </tbody> <tfoot> <!– … Read more