How to prevent line-break in a column of a table cell (not a single cell)?

Solution 1:

You can use the CSS style white-space:

white-space: nowrap;

Solution 2:

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.