Hi I just saw a strange overflow in a table cell. The cell contains two words, and the second word seems to being not put on a new line if it is larger than the column width. Here is a use case. The second cell is a little bit less large, then both words are kept on a single line, while in the first cell the second word goes on a new line:
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <fo:simple-page-master master-name="main"> <fo:region-body margin="25pt"/> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference="main"> <fo:flow flow-name="xsl-region-body"> <fo:table font-family="Helvetica" font-size="8pt" width="239.75pt" table-layout="fixed"> <fo:table-column column-width="121pt"/> <fo:table-column column-width="118.75pt"/> <fo:table-body> <fo:table-row> <fo:table-cell border-style="solid" border-width="0.25pt"> <fo:block start-indent="3pt" end-indent="3pt" >NIEUWE AUTOMOBIELMAATSCHAPPIJ</fo:block> </fo:table-cell> <fo:table-cell border-style="solid" border-width="0.25pt"> <fo:block start-indent="3pt" end-indent="3pt" >NIEUWE AUTOMOBIELMAATSCHAPPIJ</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:flow> </fo:page-sequence> </fo:root> Is it the expected behaviour? Is there a way to force breaking line even if the word is too large for the cell? Regards, --drkm ___________________________________________________________________________ Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses http://fr.answers.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
