I need assistance with centering the h4
and button
vertically on the page. Can someone help me achieve this?
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="89ebe6e6fdfafdfbe8f9c9bda7bfa7b9">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<section class="content">
<div class="card text-center">
<div class="card-header">
<h3 class="card-title">CardHeader</h3>
</div>
<div class="card-body" style="height: 300px;">
<h4>Centered text with a button below</h4>
<button class="btn btn-primary mt-2 text-center">
<i class="fa fa-plus mr-1" />
<span>Add Button</span>
</button>
</div>
</div>
</section>