[EMAIL PROTECTED] wrote:
The only thing that is somewhat unaesthetic about the solution is that I
have to use fixed heights for the table rows. Is there also a solution for this?
Try using three absolutely positioned block containers
completely overlapping each other and containing a table
for the center and bottom aligned content:
<fo:block-container position="absolute"
top="0mm" left="0mm" width="120mm" height="1in">
<fo:block>1</fo:block>
</fo:block-container>
<fo:block-container position="absolute"
top="0mm" left="0mm" width="120mm" height="1in">
<fo:table table-layout="fixed" width="100%">
<fo:table-column column-width="proportional-column-width(1)"/>
<fo:table-body>
<fo:table-row height="1in">
<fo:table-cell display-align="center">
<fo:block>2</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block-container>
<fo:block-container position="absolute"
top="0mm" left="0mm" width="120mm" height="1in">
<fo:table table-layout="fixed" width="100%">
<fo:table-column column-width="proportional-column-width(1)"/>
<fo:table-body>
<fo:table-row height="1in">
<fo:table-cell display-align="bottom">
<fo:block>3</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block-container>
...
Untested, I can't really say whether absolutely positioned
block containers work in static content.
J.Pietschmann
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]