Hi Andreas,
Andreas L Delmelle wrote:
Check the margin or indent on the parent (or ancestor) block.
Parent (or ancestor) block has no any indents.
But I tried resolve my in the another way:
<xsl:template match="/">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
font-family="sans-serif" font-size="6pt">
<fo:layout-master-set>
<fo:simple-page-master master-name="main"
page-width="210mm"
page-height="297mm"
margin-top="5mm"
margin-bottom="5mm"
margin-left="5mm"
margin-right="5mm">
<fo:region-body />
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="main">
<fo:flow flow-name="xsl-region-body">
<fo:block margin-left="10mm">
<fo:block font-size="120%" font-weight="bold">
TEXT
</fo:block>
<fo:table table-layout="fixed" width="100%">
<!-- skip body -->
</fo:table>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
And text from block has margin 10 mm but table has margin 20 mm.
Regards,
Miroslav
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]