Is it possible to stop the TD gap at the minus sign and instead make it split into a decimal point?
I have a table displaying decimal amounts from a database. Some of these quantities are large and need to be wrapped somehow.
At the moment, when the value exceeds my TD width, it is truncated as follows:
-
123456.00
But is there a way to make it break like:
-12345
.00
without having to manually intervene and format the strings? that is, can this be done in css or in another way?
EDIT
Both of these functions work in Firefox, but not in IE8 (second and third columns
<td>
-1234567​.89
</td>
<td>
-1234567<wbr>.89
</td>

source
share