0

In xsl / fop how do you make a block take up exactly the whole page ?

Is there something like height = 100%?

I want the first page of my pdf to contain a block with dynamic summary that can be a couple of lines only so I don't want the rest of the pdf blocks to be come up on the first page.

Ayrad
  • 3,996
  • 8
  • 45
  • 86

1 Answers1

2

You just need to insert a page break after the relevant block:

<fo:block break-after='page'/>
Jon Cram
  • 16,609
  • 24
  • 76
  • 107