Can the <tfoot>
element be repeated selectively on certain pages?
If so, what is the method to achieve this? Currently, I am able to repeat it on every page using the following CSS:
tfoot {
display: table-footer-group;
}
How do I modify this CSS to only display the <tfoot>
on specific pages, such as even numbered pages or multiples of 3?
Incorporating some JavaScript would also be beneficial, although it is not the preferred choice.