You can use the CSS style white-space:
white-space: nowrap;
For completion sake:
#table_id td:nth-child(2) {white-space: nowrap;}
Is used for applying a style to the 2 column of the table_id
table.
This is supported by all major Browsers, IE started supporting this from IE9 onwards.
Just add
style="white-space:nowrap;"
Example:
<table class="blueTable" style="white-space:nowrap;">
<tr>
<td>My name is good</td>
</tr>
</table>
Use the nowrap style:
<td style="white-space:nowrap;">...</td>
It's CSS!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With