With Css or bootstrap or whatever, how can i give the cards in the example the same height and weight??
I have tried using the .card-deck class (Bootstrap .card-deck) but it wont work properly because of the horizontal scroll that can have alot of card elements.
<div class="container-fluid">
<div class="scrollmenu" id="main-row">
<div id="main-element" class="card text-center floc-card">
<div class="card-body">
<h5 class="card-title">Title</h5>
<h6 class="card-subtitle mb-2 text-muted">Description</h6>
<p class="card-text font-weight-bold">
Some text
</p>
<button type="button" class="btn btn-outline-primary bg-white files-btn">
Button
</button>
</div>
</div>
.....
</div>
</div>
Here is the Code Example