Hello I was wondering how can I center the content inside the card I tried d-flex and justify content with align content and items but it still isn't working i have a h-100 too so I'm not sure whats going wrong
Code:
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card info-box-2 h-100" style="border-radius: 1.75rem;">
<div class="body">
<div class="content" style="justify-content: center; text-align: center; display: contents;">
<div class="image"><img src="https://www.flaticon.com/svg/static/icons/svg/1251/1251768.svg" alt="" width="25%"></div>
<div class="number"><span style="font-size:20px;">Leave Entitlements</span></div>
<div class="text">Manage Leave Entitlements for all registered users</div>
<div class="text"><a href="" class="btn btn-primary btn-simple btn-round">Entitlements</a></div>
</div>
</div>
</div>
</div>
This is how it looks from the view also p.s I am using bootstrap for this
EDIT: Added the image description