Forum How do I...?

Table spread with continued content

newgen
Is there any possibilities to create continued table content as shown below. Thank you.
  1. Table continued_sample.pdf50.1 kB
mikeday
Currently the only way to do this is by using multiple <caption> elements and the prince-caption-page property to show a different caption on the first page and following pages.
newgen
Thanks, Mike. This worked to bring the title caption on the first and next page.

We can also bring the continued style at the bottom of the page when the table gets cut please check the below code. Thank you.

<caption style="position: absolute;bottom:0;right:0;prince-caption-page:following">continued...</caption>
  1. attr3.pdf50.1 kB
mikeday
How about using the caption-side property?
newgen
Yes, the caption-side property works, please find the following code.

HTML
<caption id="example1">continued...</caption>

CSS
#example1{
caption-side: bottom;
position: absolute;
bottom: 0;
right: 0;
}
mikeday
Why does it need to be absolutely positioned?