Let me show that in an example:
What it is:
JavaScript
x
$ 100,000
$ 10,000
$ 1,000
What I want:
JavaScript
$ 100,000
$ 10,000
$ 1,000
Also I wasn’t sure how to name the question. Any suggestions?
Advertisement
Answer
You can use something like in below snippet.
Define a width
and text-align
to the right
JavaScript
.rich {
display: inline-block;
width: 50px;
text-align: right;
}
JavaScript
<span>$</span><span class="rich">100,000</span><br>
<span>$</span><span class="rich">1,000</span><br>
<span>$</span><span class="rich">100</span><br>