When there is a html with a table and you want to print it, the table may or may not split depending on how long the table is. If it splits there is a way to repeat the header of the table, to do that you can add:
thead {
display: header-table-group;
}
What I want to do is to skip the first page, so the header will only show on subsequent pages.
Is there a way to do this?