Hello, I have a document whith two columns I have a problem wiyh span="all" using (see following example)
I have an initial blok with common attributs witch contains two blocks. In the second block I set a span="all" but it doesn't work. If I remove the initial block with common attributs, it's ok, but it is not what I want to do It would be find if somebody could help me? Best regards Thanks Jean-François Selber See the FO sample file : <?xml version="1.0" encoding="ISO-8859-1"?> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <fo:simple-page-master master-name="first"> <fo:region-body column-count="2" column-gap="5mm"/> </fo:simple-page-master> <fo:page-sequence-master master-name="standard"> <fo:repeatable-page-master-reference master-reference="first" /> </fo:page-sequence-master> </fo:layout-master-set> <fo:page-sequence master-reference="standard"> <fo:flow flow-name="xsl-region-body"> <!-- Initial block with common attribut --> <fo:block font-style="normal" color="#008080" font-family="sans-serif" background-color="#FFFFFF" font-size="12px" text-align="justify"> <!-- first block --> <fo:block text-align="center"> Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1 Block 1. The block 1 is span="none" </fo:block> <!-- Second block : span="all" is add here. The ERROR is that the block is not span --> <fo:block span="all" text-align="center"> Block 2 Must be span but it is not span -- Block 2 Must be span but it is not span -- Block 2 Must be span but it is not span </fo:block> </fo:block> </fo:flow> </fo:page-sequence> </fo:root> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]