Try adding this to your <tr>
tags: nobr="true"
.
So a quick example would be:
<table>
<tr nobr="true">
<td>Test</td>
<td>Test 2</td>
</tr>
</table>
The nobr="true"
prevents the table rows from ever breaking apart. You can also put this on <td>
and <th>
tags.