I have a html table with the following structure:
<table>
<thead>
<tr><th>ABC Ltd.</th><tr>
</thead>
<tbody>
<table>
<thead><tr><th>Name</th></tr></thead>
<tbody>
<tr><td>ola</td></tr>
<tr><td>ola</td></tr>
<tr><td>ola</td></tr>
<tr><td>ola</td></tr>
... 500 more rows ...
</tbody>
</table>
</tbody>
</table>
I have to make sure that ABC Ltd. and Name appear on each page. How do I do that?
I tried using:
@media print
{
thead { display:table-header-group }
tfoot { display:table-footer-group }
}