For non-ie browsers like mozilla the below code will work:
<table>
<tr>
<td style=”white-space: nowrap”>text here</td>
</tr>
</table>
but the above will not work for ie browser, so this is what will work for ie :
<table>
<tr>
<td><span style=”white-space: nowrap”>text here</span></td>
</tr>
</table>

