Hello, I am trying to align a badge to the right within a List Group that also contains a font icon and text. I have been unable to achieve this using justify-content-between as it affects all three elements together. The example in the documentation only shows how to align all three elements with justify-content-between, but I want just the badge to be pushed to the right.
When I try putting justify-content-between after the font icon, it doesn't work as expected.
<ul class="list-group">
<li class="list-group-item active">
<i class="fa fa-user" aria-hidden="true"></i>
<div class="justify-content-between">
Cras justo odio<span class="badge badge-default badge-pill">14</span>
</div>
</li>
</ul>