2
I’m trying to print using CSS and I have a table with thead and tfoot, I’m trying to do with this print on all pages the table header, but the result is the same, it shows only on the first page and the others does not work. If I manage to put the header and footer of the table on each page I will have the behavior I want that is in printing a table on each page.
I tried so
thead {display: table-header-group; }
tfoot {display: table-footer-group; }
How are you dividing content into pages? Manually, or letting the browser do it for you?
– mgibsonbr
leaving the browser, because it is a table that overflows the page size.
– Daniel Lemes