Format numbers with css
- by Luc M
Is it possible to format numbers using css ?
When I have 7000000.00, I would like it displayed as 7 000 000.00
I know I could write a backend (php, perl...) function or a javascript function that could return the formatted number but...
The numbers that I want to format are into a cell. I would like to have something like
<td class="myformat">7000000.00</td>
or
<td><span class="myformat">7000000.00<span></td>