Bonnie Yelverton wrote:
> So how do I change "fixed" to "relative",

By specifying table-layout="relative" on the table, but this wont
have any effect because only "fixed" is implemented.

> and what is IPD,

Inline progression dimension, or vulgo "width" for the average
westerner.

> and where do I
> specify it?

You need to supply explicit comlumn widths, like
         <fo:table table-layout="fixed">
             <fo:table-column column-width="2cm"/>
             <fo:table-column column-width="2cm"/>
             <fo:table-column column-width="2cm"/>
Note that percent measurements are not yet accepted, you can use
the proportional-column-width() function instead. In this case you
have to supply an explicit width for the table, most often something
like
 <fo:table table-layout="fixed" width="100%">
     <fo:table-column column-width="proportional-column-width(2)"/>
     <fo:table-column column-width="proportional-column-width(1)"/>
     <fo:table-column column-width="proportional-column-width(1)"/>
This will create a table which spans the page and has a first column
with double the width of the other two columns.

J.Pietschmann



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



Reply via email to