Page 1 of 1

FOP, Help <fo:block no wrap in new page

Posted: Thu Feb 17, 2005 4:07 pm
by fabiofop
Hi,

I formatting area using

<fo:block...
with text in 3 rows.

Text at the end page, cause 2 rows in first page
and 1 row in second page.

Can I shift entire block in second page, and no wrap
rows?

Thanks for any suggestion.
fabio

Posted: Thu Feb 17, 2005 5:21 pm
by sorin_ristache
Hello,

Maybe the attribute break-before will help you:

Code: Select all


<fo:block break-before="page">
...
</fo:block>
For more information see

http://xml.apache.org/fop/compliance.ht ... eepsbreaks
http://www.w3.org/TR/xsl/slice7.html#break-before

Regards,
Sorin

Posted: Thu Feb 17, 2005 5:45 pm
by fabiofop
Thanks.
fabio