I want to display card with same height but with different sizes, respecting Boostrap's grid.
If I take the example of card-deck : https://jsfiddle.net/sb7t5y3x/, I just want for example the first card to be col-6 sized, for me the most elegant way should be :
<div class="card col-6"> .... </div>
But it doesn't work since .card-deck > .card
applies a flex 1.
So I tried to wrap my cards in col :
<div class="col-6">
<div class="card"> ... </div>
</div>
But col have paddings, and card have margin, so I have 2 margins applied (see https://jsfiddle.net/applyss/vcgkujxp/, spaces are not regular)
Is there a simple standard way to keep cards with same height in a grid system ?