I am displaying 3 card components in a layout of 3 v-cols inside of a v-row like this (All 3 elements are currently v-card-text elements):
<v-row>
<v-col>
<v-card>{{elements}}</v-card>
</v-col>
<v-col>
<v-card>{{elements}}</v-card>
</v-col>
<v-col>
<v-card>{{elements}}</v-card>
</v-col>
</v-row>
Since the content of element 2 consist of dynamically added text of various lengths they are not always of the same length and therefore height, resulting in a situation like this:
What I would like to achieve instead is that each element is placed in the same position across all three columns, according to the largest one, so that element 3 is always in the same position:

