flyingsaucerproject / flyingsaucer

XML/XHTML and CSS 2.1 renderer in pure Java
Other
1.99k stars 556 forks source link

how to fixed html table header #267

Closed dierent closed 6 months ago

dierent commented 8 months ago

how to fixed html table header? thead style: display:table-header-group; not work

dierent commented 8 months ago

Each page of the table has a header

pbrant commented 6 months ago

You can use the custom CSS property -fs-table-paginate to do this. For example,

<table style="-fs-table-paginate: paginate">

This will repeat any thead (or any element with display: table-header-group) on subsequent pages.