Am using xhtml2pdf . The issue am facing is the sentences are breaking into next line in the middle of words
Tried using word-wrap:break-word;-pdf-keep-with-next: true;overflow-wrap: break-word; Not working
<table class="card1 ">
<thead>
<tr>
<th width="60%">DEDUCTIONS</th>
<th>AMOUNT</th>
</tr>
</thead>
<tbody>
<tr>
<td style="word-wrap:break-word;-pdf-keep-with-next: true;"> Provident Fund Professional Tax Total Deductions Income Tax</td>
<td class=" ">₹ 87,000</td>
</tr>
<tr>
<td class=" ">
<p style="word-wrap:break-word;-pdf-keep-with-next: true;">Income Tax Provident Fund Professional Tax Total Deductions</p>
</td>
<td class=" ">₹ 32,090</td>
</tr>
<tr>
<td>Professional Tax</td>
<td>₹ 87,000</td>
</tr>
</tbody>
<tfoot>
<tr>
<td class=" ">Total Deductions</td>
<td class=" ">₹ 1,29,328</td>
</tr>
</tfoot>
</table>

give it a try with
overflow-wrap: break-wordinstead ofword-wrap:break-wordplease go through the following
also word-wrap-and-overflow-wrap-break-word-and-break-all and difference-between-overflow-wrap-and-word-break .