Is it possible to format numbers with CSS? That is: decimal places, decimal separator, thousands separator, etc.
|
|
Probably the best way to do so is combo of setting a span with a class denoting your formatting then use Jquery .each to do formatting on the spans when the DOM is loaded... |
|||
|
|
|
No, you have to use javascript once it's in the DOM or format it via your language server-side (PHP/ruby/python etc.) |
|||||||
|
|
The CSS working group has publish a Draft on Content Formatting in 2008. But nothing new right now. |
|||
|
|
|
You cannot use CSS for this purpose. I recommend using JavaScript if it's applicable. Take a look at this for more information: JavaScript equivalent to printf/string.format Also As Petr mentioned you can handle it on server-side but it's totally depends on your scenario. |
|||
|
|
|
I don't think you can. You could use number_format() if you're coding in PHP. And other programing languages have a function for formatting numbers too. |
|||
|
|
|
Not an answer, but perhpas of interest. I did send a proposal to the CSS WG a few years ago. However, nothing has happened. If indeed they (and browser vendors) would see this as a genuine developer concern, perhaps the ball could start rolling? |
|||
|
|