How to remove the space between Currency Symbol and Amount?
I was trying to remove the space between currency symbol and amount in HTML. But when I am coding it using decimal in HTML, there is a space remaining between currency symbol and amount. Please help me in removing it.
I don’t want this space between INR sign and amount. Here is my current code:-
<span class="discount">₹ 4500</span>
New contributor
DEBASHIS KAR is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Like this:
<span class="discount">₹<span>4500</span></span>
Or this:
<span class="discount">₹4500</span>