I need help figuring out how to align this card uniformly with the others:
https://i.sstatic.net/x2wZ2.png
In the image below, you can see that the card for the top reason for downtime doesn't match the other cards. I want them all to be the same height regardless of their content.
Here is my code snippet:
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<div class="card shadow mb-4">
<h5 class="card-header">
Top Reason for Downtime
</h5>
<div class="card-body">
<ul id="top5Downtime">
</ul>
</div>
</div>
</div>
<div class="col-md-5">
<div class="card shadow mb-4">
<h5 class="card-header">
Top Down Terminals:
</h5>
<div class="card-body">
<ol id="mostDown">
</ol>
</div>
</div>
</div>
... (Additional code omitted)
I attempted using align-self-stretch
, but it disrupted my design. Any suggestions on how I should proceed?