If you truly want the text at opposite ends of the line (not just a certain
width between them) you can do something like
<fo:block text-align-last="justify" font-size="7pt">
ABC<fo:leader/>KLM
</fo:block>
If you want a certain amount of space between your two texts try padding-left
instead of padding-before.
>>> "Ashish Kulkarni" <[EMAIL PROTECTED]> 11/24/2008 3:49 PM >>>
Hi
I want a text like below
ABC
KLM
I want ABC to be at start of line and KLM at end,
I have tried
<fo:block font-size="7pt">
ABC<fo:inline text-align="end" padding-before="15cm"> KLM</fo:inline>
</fo:block>
But still when i print PDF i get ABC and KLM without space in between
Ash