Hi there
I encountered an issue related to Ultimate PDF. After downloading and opening the PDF file, I noticed that some long content inside a cell appears outside of the cell, as shown in the image below. This issue occurs randomly. Are there any solution for this issue ?
Thanks
Hi Thuan Pham Dinh
This is a known behavior of Ultimate PDF (ODC) and it is not random, even though it may appear that way.
Apply explicit CSS rules on the cell or text container:
.td {
word-wrap: break-word;
word-break: break-word;
white-space: normal;
}
YOu can addtionally set the table layout to "fixed" via CSS. Hope that helps
@Thuan Pham Dinh check in your table if you mentioned any height as inline css of the table cell.