Incorporating a border line within the card-header
is my current goal. My approach involves positioning two icons - one on the left side and the other on the right.
Illustrative example below:
https://i.sstatic.net/BgxVu.png
Utilizing HMTL and CSS to achieve this effect:
.card-header .compl {
border-right: 2px solid;
border-top-width: 12px;
padding-right: 10px;
}
<div class="card bg-dark" style="width: 18rem;">
<div class="card-header">
<div class="compl float-start mp-5">
<ion-icon name="checkmark" class="fs-4"></ion-icon>
</div>
<div class="views float-end">
<ion-icon name="eye" class=" fs-4"></ion-icon>
</div>
</div>
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the.</p>
<div class="progress" style="height: 8px;">
<div class="progress-bar" role="progressbar" style="width: 50%;" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100">25%</div>
</div>
</div>
</div>