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 "Skladov, Victor" <Sk...@his.de> on 2002/02/07 15:06:10 UTC

FO: Avoid Linefeed Between 2

Hi to all!

How can I avoid the linefeed between 2 <fo.block> objects?
Example:

<fo:block>MY</fo:block>
<fo:block>fop</fo:block>

gives me the following output:

MY
fop

but I want:
MY fop

Are there any properties that could help to avoid this linefeed?

Thanx!!!
Viktor

Re: Avoid Linefeed Between 2

Posted by Aleksei Vassiljev <al...@hireright.ee>.
Hi
You may use <fo:inline> instead
For example:

<fo:block>
<fo:inline>MY</fo:inline>
<fo:inline>fop</fo:inline>
</fo:block>

Aleksei Vassiljev
Software Developer
Hireright Inc.


----- Original Message ----- 
From: "Skladov, Victor" <Sk...@his.de>
To: <fo...@xml.apache.org>
Sent: Thursday, February 07, 2002 16:06 
Subject: FO: Avoid Linefeed Between 2 <fo:blocks>


Hi to all!

How can I avoid the linefeed between 2 <fo.block> objects?
Example:

<fo:block>MY</fo:block>
<fo:block>fop</fo:block>

gives me the following output:

MY
fop

but I want:
MY fop

Are there any properties that could help to avoid this linefeed?

Thanx!!!
Viktor