Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Good day, I created a XSL-FO template which prints a few blocks containing texts that change dynamicaly. Sometimes a block is splitted across two pages because there is not enough space on the page. Is there a way to put the block on next page instead of splitting it across pages if it does not fit please? I tried to put it into a table with keep-together="always" but then each text is on single line (no line wrapping) and overflows right page margin where disappears. Thank you in advance!

Vojtech

  <fo:table table-layout="fixed" width="100%">
    <fo:table-column column-width="proportional-column-width(1)"/>
    <fo:table-body>
      <fo:table-row keep-together="always">
        <fo:table-cell
          border-width="1px"
          border-color="black"
          border-style="solid"
          background-color="#ffffff"
          text-align="left">
          <fo:block>
            Text 1
          </fo:block>
          <fo:block>
            Text 2
          </fo:block>
          <fo:block>
            Text 3
          </fo:block>
        </fo:table-cell>
      </fo:table-row>
    </fo:table-body>        
  </fo:table>   
share|improve this question
1  
possible duplicate of How do you add a page break in a PDF with XSL-FO? – Lukas Eder Dec 28 '11 at 13:12

1 Answer

up vote 3 down vote accepted

Most likely, you could use the page-break-inside attribute:

<fo:block page-break-inside="avoid">
  ...
</fo:block>

There also exist other page-break attributes. Take the best one:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.