I want make like this : https://getbootstrap.com/docs/4.0/components/card/#card-groups
So I want height of the box remains the same even though the description changes
My codepen like this :
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 the height card to remain the same, although the descriptions are different
How can I do it?
