I am having trouble arranging my div elements the way I want them to be.
First, I want the height of the card to match the height of my title. Then, I want the bottom of my two buttons to align with the bottom of my card.
I believe this is achievable but I seem to be stuck. Can you provide assistance?
<div class="container" style="width:auto;margin-top:0%">
<div class="row col-12">
<div class="5" style="margin-top:2%"><h3>Modify your user profile</h3></div>
<div class="card border-primary md-5 col-6" style="width: auto; margin-left:51%">
<div class="card-header" style="font-size:22px">Attention</div>
<div class="card-body">
<p class="card-text">
The updated data must first be validated. <br /><br />
A request will be sent once you click on "Submit". <br /><br />
It's normal to see the old data still displayed, as it indicates that validation has not been completed yet.
</p>
</div>
</div>
<div>
<button type="button" class="btn btn-outline-primary" id="btnMember" onclick="hideCPY()">Personal</button>
<button type="button" style="margin-left:1%" class="btn btn-outline-primary" id="btnShowCompany" onclick="hideMember()">Company</button>
</div>
</div>
[