Zunenonooo / dompdf

Automatically exported from code.google.com/p/dompdf
0 stars 0 forks source link

Table headers in each page #526

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

Iam using dompdf to print table.How to insert a table headers on all pages

Original issue reported on code.google.com by shiva.ch...@gmail.com on 16 Aug 2012 at 8:40

GoogleCodeExporter commented 8 years ago
If you put your tables headers in a thead element they will be repeated across 
pages:

<table>
  <thead>
    <!-- your header rows here -->
  </thead>
  <tbody>
    <!-- your "data" rows here -->
  </tbody>
</table>

Original comment by eclecticgeek on 16 Aug 2012 at 2:24

GoogleCodeExporter commented 8 years ago

Original comment by eclecticgeek on 30 May 2013 at 5:16