Is there any possibilities to create continued table content as shown below. Thank you.
Forum › How do I...?
Table spread with continued content
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.
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>
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>
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;
}
HTML
<caption id="example1">continued...</caption>
CSS
#example1{
caption-side: bottom;
position: absolute;
bottom: 0;
right: 0;
}