I'm currently utilizing Bootstrap 4+ to design a card that features a collapsible card-body, triggered by a link located in the card-header.
<div class="card text-left mb-3 mt-3">
<div class="card-header p-3">
<h4>Where should we begin?</h4>
<a class="float-right" data-toggle="collapse" href="#collapse1" aria-expanded="false" aria-controls="collapse1">
Read More
</a>
</div>
<div class="collapse" id="collapse1">
<div class="card-body">
<p>Content goes here</p>
</div>
</div>
</div>
The anchor tag displaying "Read More" is not aligned vertically inline with the heading element beside it.
Here's how it looks on chrome:
https://i.sstatic.net/FurOq.png
Is there a way to align the heading and "Read More" link vertically so they are in line with each other, thus minimizing unnecessary vertical space?