I'm facing an issue with a Bootstrap 5 card where I want to align certain content in the header to the right and some to the left. Despite my efforts, everything remains left-aligned. Here's a snippet of my code:
<div class="card">
<div class="card-header">
<a href="/users">Users</a>
<span class="text-end text-muted">
48
</span>
</div>
<div class="card-body">
<p>Card content</p>
</div>
</div>
I've tried using text-end
, float-right
, and pull-right
on the span
element but it hasn't worked. Everything remains left-aligned.
Thank you for any assistance you can provide.
Most examples online are based on Bootstrap 4, but I specifically need help with Bootstrap 5 as previous solutions have not been effective.