I'm trying to generate PDF using Apache FOP. Sometimes I have to use absolute position of block-containers. But when block contains table I've got problems whith it layout. I don't use height restrictions and FOP calculate row height automatically but when I use position="absolute" doesn't.
<fo:block-container margin-top='1mm'>
<fo:block font-size='10pt'>
<fo:table table-layout='fixed' width='100%'>
<fo:table-column column-number='1' column-width='7mm' border="solid, 0.3mm, black" border-start-width="0.5mm"/>
<fo:table-column column-number='2' column-width='95mm' border="solid, 0.3mm, black"/>
<fo:table-column column-number='3' column-width='7mm' border="solid, 0.3mm, black"/>
<fo:table-column column-number='4' column-width='14mm' border="solid, 0.3mm, black"/>
<fo:table-column column-number='5' column-width='20mm' border="solid, 0.3mm, black"/>
<fo:table-column column-number='6' column-width='20mm' border="solid, 0.3mm, black" border-end-width="0.5mm"/>
<fo:table-header>
<fo:table-row border-before-color="black" border-before-style="solid" border-before-width="0.5mm" font-weight="bold" text-align="center" display-align="center">
<fo:table-cell>
<fo:block>№</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>some text</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>Count</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>text</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-header>
<fo:table-footer>
<fo:table-row text-align="right" display-align="center">
<fo:table-cell number-columns-spanned="5">
<fo:block font-weight="bold">text:</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block font-weight="normal">
<x:value-of select='/Document/Invoice/Total_Summ'/>
</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row border-after-color='black' border-after-style='solid' border-after-width='0.5mm' text-align='right' display-align='center'>
<fo:table-cell number-columns-spanned='5' font-weight='bold'>
<fo:block>some text:</fo:block>
</fo:table-cell>
<fo:table-cell font-weight='normal'>
<fo:block>
<x:value-of select='/Document/Invoice/Total_NDS'/>
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-footer>
<fo:table-body>
<x:for-each select='/Document/Invoice/Line'>
<fo:table-row font-size="8pt" font-weight="normal" text-align="center" display-align="center">
<fo:table-cell text-align="left" column-number="2">
<fo:block font-size="8pt">
<x:value-of select='./Name'/>
</fo:block>
</fo:table-cell>
<fo:table-cell display-align="before" column-number="1">
<fo:block>
<x:value-of select= './Row'/>
</fo:block>
</fo:table-cell>
<fo:table-cell column-number='3'>
<fo:block>
<x:value-of select='./Ed'/>
</fo:block>
</fo:table-cell>
<fo:table-cell column-number='4'>
<fo:block>
<x:value-of select='./Count'/>
</fo:block>
</fo:table-cell>
<fo:table-cell column-number='5'>
<fo:block>
<x:value-of select='./Price'/>
</fo:block>
</fo:table-cell>
<fo:table-cell column-number='6'>
<fo:block>
<x:value-of select='./Cost'/>
</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block></fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block></fo:block>
</fo:table-cell>
</fo:table-row>
</x:for-each>
</fo:table-body>
</fo:table>
</fo:block>
</fo:block-container>