Hi,

> -----Message d'origine-----
> De : George Tsopouridis [mailto:[EMAIL PROTECTED] 
> Envoyé : mercredi 15 octobre 2008 19:35
> 
> Jeremias thanks again for your total help, but i need 
> something else. If i
> enclose all my content in an fo:block and with start-indent 
> and end-indent
> (for padding left/right), and also i have 2 columns in my 
> region-body, the
> value of start-indent(or end -indent) passes to every block 
> inside my total
> block. Value of start-indent exists between two columns. I 
> understand this
> behavior, but can i keep start-indent only in total block 
> which contains all
> content(other blocks with columns);; I tried start -indent = 0 at the
> content blocks but nothing. Is there a solution; I need 
> padding-left in my
> region-body.
> 
> > Thanks in advance...

You should use a fo:block-container surrounding a fo:block resetting *-indents:

<fo:block-container start-indent="10mm" end-indent="10mm">
  <fo:block start-indent="0mm" end-indent="0mm">
    <!-- your content comes here -->
  </fo:block>
</fo:block-container>

This because fo:block-container generates a reference-area (see REC XST-FO 1.1, 
section 6.3).

HTH,
Pascal

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to