I have some span like this :
<span class="example">12345678</span>
<span class="example">123456</span>
But I want my number to be displayed like this :
12345678 -> 12 345 678
123456 -> 123 456
Is it possible in CSS or only in JS/jQuery ?
I have some span like this :
<span class="example">12345678</span>
<span class="example">123456</span>
But I want my number to be displayed like this :
12345678 -> 12 345 678
123456 -> 123 456
Is it possible in CSS or only in JS/jQuery ?
No, it is not possible. You will have to use JS/jQuery.