looking for this
current status
this is my code:
<div class="card-deck test">
<div class="card-group mx-auto test2">
<div class="d-flex align-items-start overviewHeader">
<h2>Overview</h2>
</div>
<div class="card overviewCard text-center">
<div class="card-body align-items-center d-flex">
<div>
<!-- Content here -->
</div>
</div>
</div>
<!-- More cards here -->
</div>
</div>
The CSS classes test
, test2
are used to illustrate borders, the overviewHeader
class styles the header, and the overviewCard
class styles the card.
How can I position the header above and at the start of the card deck, similar to the first image provided?
Thank you in advance.