I am having an issue with the card-deck property where it is not being applied correctly. The .card-deck class should create a grid of cards that are equal in height and width, and the layout should adjust automatically as more cards are added.
Here is the code snippet:
<div class="container-fluid">
<div class="card-group">
<div class="card" id="col1m">
<div class="card-header text-center" style="color: #888" id="display1_title">CAUDAL abcdefghi (BPM)</div>
<div class="card-body text-center" id="col1">
<p class="card-text" style="font-family:roboto; font-weight: bold; color:#888" id="display1_value">0</p>
</div>
</div>
<div class="card" id="col2m">
<div class="card-header text-center" style="color: #888;" id="display2_title">VOL. TOTAL (BBL)</div>
<div class="card-body text-center" id="col2">
<p class="card-text" style=" font-family:roboto; font-weight: bold; color: #888" id="display2_value"> 0 </p>
</div>
</div>
</div>
</div>