You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-users@xmlgraphics.apache.org by "Brienen, SJP (Sander)" <S....@rf.rabobank.nl> on 2002/11/27 14:58:11 UTC

block container

Hello all,

I am using the block container element to keep together a few blocks. But
when I generate my PDF nothing seems to display. Is this a problem of fop or
is it anything else?

Here is my code snippet:
      <fo:block-container font-size="22pt">
        <fo:block>tekst</fo:block>
        <fo:block>tekst</fo:block>
        <fo:block>tekst</fo:block>
      </fo:block-container>

regards
Sander Brienen


================================================
De informatie opgenomen in dit bericht kan vertrouwelijk zijn en 
is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht 
onterecht ontvangt, wordt u verzocht de inhoud niet te gebruiken en 
de afzender direct te informeren door het bericht te retourneren. 
================================================
The information contained in this message may be confidential 
and is intended to be exclusively for the addressee. Should you 
receive this message unintentionally, please do not use the contents 
herein and notify the sender immediately by return e-mail.



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


Re: block container

Posted by Jeremias Maerki <de...@greenmail.ch>.
Block-container with relative positioning as in your example is not
implemented, only absolute positioning. 

You can easily rewrite your code to:

       <fo:block font-size="22pt">
         <fo:block>tekst</fo:block>
         <fo:block>tekst</fo:block>
         <fo:block>tekst</fo:block>
       </fo:block-container>
       
...which does the same.
       
On 27.11.2002 14:58:11 Brienen, SJP (Sander) wrote:
> Hello all,
> 
> I am using the block container element to keep together a few blocks. But
> when I generate my PDF nothing seems to display. Is this a problem of fop or
> is it anything else?
> 
> Here is my code snippet:
>       <fo:block-container font-size="22pt">
>         <fo:block>tekst</fo:block>
>         <fo:block>tekst</fo:block>
>         <fo:block>tekst</fo:block>
>       </fo:block-container>


Jeremias Maerki


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org