How to use text-wrap while generating pdf document.

0
I have created a table in document template, now i want to generate it as pdf. But the issue is the contents of the table are overlapping. How to use text-wrap kind of functionality?
asked
4 answers
9

Hi Sonam,

use the below css code in your template

/*

text-overflow: initial !important;

white-space: normal !important;

*/

 

answered
2

Hi Sonam  Kumari,

                 you may try  this css in your table row custom styles

                     overflow-wrap: break-word;

answered
0

Hi, any updates?

answered
-1

Hi 

add this css in your table row css 

  word-wrap: break-word;
 

 

answered