RE: Table cell problem

Well, for better look it's better to set a padding for fo:table, too.
So, finally it looks, like:

<fo:table table-layout="fixed" width="100%"
    wrap-option="wrap" border="3pt double black" padding="1pt">
    <fo:table-column column-number="1" column-width="20%"/>
    <fo:table-column column-number="2" column-width="10%"/>
....
    <fo:table-body>
        <!-- 1st row -->
        <fo:table-row>
            <fo:table-cell border="0.5pt solid black" padding="1pt">
                <fo:block font-weight="bold" color="blue">
                    Option Name 1 </fo:block>
            </fo:table-cell>
....
        </fo:table-row>
    </fo:table-body>
</fo:table>

Respectfully,
Volodymyr Rodymyuk

Received on Thursday, 19 July 2007 10:11:22 UTC