There are many numbers in my application and I want separate them with commas every 3 digits by CSS or SCSS.
I haven’t found a desired result on Google.
Can anyone help me on this please?
Like:
<span class="number"> 1234567.89 </span>
result:
<span class="number"> 1,234,567.89 </span>
2
Answers
if you can use javascript you can use
toLocaleString function
Try the following code