|
Hi,
I have the following code and I am trying to get the long word in the table to wrap so that it doesn't overflow from the pdf.
Wrapping in the table works if one uses table-layout: fixed, but pd4ml doesn't support this so in the pdf the end result is overflow.
Is there some other way to get the text in the table to wrap?
<html> <head> <style type="text/css">
table,td { word-wrap: break-word; table-layout: fixed; }
</style> </head>
<body>
<table width="100%" border="1"> <tr> <th>Title1</th> <th>Title2</th> </tr> <tr> <td>short</td> <td>LongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWord</td> </tr> </table>
</body>
</html>
|