my table is auto generated so I can’t give it classes. All i can do is white general css like the following
td{white-space:nowrap}
a{white-space:normal}
How can I give the text1 normal white-space but nowrap for text 2 and text 3?
<tr>
<td>
<a href=""...>text 1</a>
</td>
<td>
text 2
</td>
<td>
text3
</td
</tr>
if your link is always on first cell of your row you could solve with
(I have no other clues for different solutions)