I am facing an issue with aligning the values in a column under each other without percentages using my own html code, css, and bootstrap classes:
<div class="d-flex">
<p class="table-string">91.86</p>
<span class="ml-2">(+61%)</span>
</div>
<div class="d-flex">
<p class="table-string">108.15</p>
<span class="ml-2">(+108%)</span>
</div>
<div class="d-flex">
<p class="table-string">329.93</p>
<span class="ml-2">(+593%)</span>
</div>
This is how I want the column to look like:
https://i.sstatic.net/QG8I9.png
But unfortunately, it currently looks like this:
https://i.sstatic.net/RpDZm.png
If I want the values to be strictly aligned under each other (hundreds under hundreds, tens under tens, ones under ones) and also have the value and percentage aligned at the end of the field, what changes should I make? Thank you for any assistance.