how to change negative sign position css
Wrap the number in span and add two following css to it:
direction: ltr;
display: inline-block;
Check the code below!
BODY {
direction: rtl;
}
#test {
direction: ltr;
text-align: right
}
Sample Text abc <br />
-1
<p id="test">-1 </p>