I'm trying to achieve a layout similar to this: https://getbootstrap.com/docs/4.0/components/card/#card-groups
https://i.sstatic.net/HxKEh.png
The goal is to keep the height of the box consistent even when the description varies
Here's my codepen link :
https://codepen.io/positivethinking639/pen/dyyWadg?editors=1010
<v-container fluid>
<v-row dense>
<v-col
v-for="card in cards"
:key="card.title"
:cols="card.flex"
>
<v-card>
<v-img
:src="card.src"
class="white--text align-end"
gradient="to bottom, rgba(0,0,0,.1), rgba(0,0,0,.5)"
height="200px"
>
</v-img>
<v-card-text v-text="card.title"></v-card-text>
<v-card-actions>
<v-btn icon>
<v-icon>mdi-heart</v-icon>
</v-btn>
<v-btn icon>
<v-icon>mdi-bookmark</v-icon>
</v-btn>
<v-btn icon>
<v-icon>mdi-share-variant</v-icon>
</v-btn>
</v-card-actions>
</v-card>
</v-col>
</v-row>
</v-container>
I want to maintain the same height for each card, regardless of varying descriptions
Any tips on how to achieve that?