Is there a way to prevent the thead
of a table in an HTML page from being printed on all pages when a user initiates printing?
The issue arises because I am using page-break-after: always;
on an element before my table, causing the table header to also be printed on the first page...
I am unable to replace my thead
with a tr
due to complex code dependencies within the thead
.