I need to display a number in HTML with spaces between its millions, is there any easy formatting that allows to do so?
I want to display 999 999 999, instead of 999999999
I need to display a number in HTML with spaces between its millions, is there any easy formatting that allows to do so?
I want to display 999 999 999, instead of 999999999
You would need to use PHP to generate the HTML how you would like it displayed, or, alternatively you could use Javascript as Dwayne above has stated. Unfortunately, HTML (or CSS) has no way of formatting numbers like you want.
Check out PHP's number_format() function: http://php.net/number_format
For Javascript, there's a few options (I searched for 'Javascript number currency format' in Google): http://numeraljs.com/
Hope this helps!
As I stated in my comment. You will not be able to format the number in the way you want using HTML. You will have to use JavaScript.
Here is how you would do it using plain JavaScript.
For reference: