My current challenge involves aligning an icon with some text, but I'm facing this issue:
https://i.sstatic.net/dGi1W.png
The desired alignment is not matching up, and instead it looks like this:
https://i.sstatic.net/BLsie.png
.percent {
float: right;
display: inline-block;
position: relative;
}
.card-icon {
float: left;
}
<div class="col-md-4">
<div class="card">
<div class="card-header" id="blue">
<p class="text-center"> Self Managed <img src="app/assets/images/star.png" alt=""> </p>
</div>
<p class="percent"> <img class="card-icon" src="app/assets/images/self.png" alt="Smiley face"> 1% </p>
EDIT ****
After trying the solution provided in the previous answer, the outcome displays as follows: https://i.sstatic.net/YbMyZ.png