My generated .pdf file has a few cells in one row and I need text in each cell to wrap to a new line once cell runs out of space. I included fo:block wrap-option="wrap" for the .xsl file but it doesn't seem to work. This is a sample of what I have if anyone can tell me what I am doing wrong I would appreciate.
<fo:table-row>
<fo:table-cell>
<fo:block wrap-option="wrap">
<xsl:value-of select="CUST_NUM1"/>
</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block wrap-option="wrap">
<xsl:value-of select="CUST_NUM2"/>
</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block wrap-option="wrap">
<xsl:value-of select="CUST_NUM3"/>
</fo:block>
</fo:table-cell>
</fo:table-row>