I have written this code: <?xml version="1.0" encoding="UTF-8" ?> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <fo:simple-page-master master-name="simplePM" page-height="25cm" page-width="20cm" margin-top="1cm" margin-bottom="1cm" margin-left="1.5cm" margin-right="1.5cm"> <fo:region-before extent="2.5cm" /> <fo:region-body margin-top="3cm" margin-bottom="3cm" /> <fo:region-after extent="2.5cm" /> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-name="simplePM"> <fo:flow flow-name="xsl-region-body">
<fo:table> <fo:table-column column-width="70mm"/> <fo:table-body> <fo:table-row> <fo:table-cell><fo:block space-before="450pt"></fo:block></fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> <fo:table> <fo:table-column column-width="200mm"/> <fo:table-header> <fo:table-row><fo:table-cell><fo:block font-size="14pt">Test Table Header 1</fo:block></fo:table-cell></fo:table-row> <fo:table-row><fo:table-cell><fo:block font-size="14pt">Test Table Header 2</fo:block></fo:table-cell></fo:table-row> <fo:table-row><fo:table-cell><fo:block font-size="14pt">Test Table Header 3</fo:block></fo:table-cell></fo:table-row> </fo:table-header> <fo:table-body> <fo:table-row><fo:table-cell><fo:block font-size="14pt">Test Table Body 1</fo:block></fo:table-cell></fo:table-row> <fo:table-row><fo:table-cell><fo:block font-size="14pt">Test Table Body 2</fo:block></fo:table-cell></fo:table-row> <fo:table-row><fo:table-cell><fo:block font-size="14pt">Test Table Body 3</fo:block></fo:table-cell></fo:table-row> </fo:table-body> </fo:table> </fo:flow> </fo:page-sequence> </fo:root> I wrote two tables: one for blank space and the other one to write data. If the property space-before of the first table has a value of 500pt, it is shown right but if the value is 450pt (like now), the table header is getting lost. Could anybody help me? Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]