<template>
<div>
<div style="height: 20px; color: yellow">
test
</div>
<v-card class="markdown-preview" tile>
<v-card-text v-html="previewText"> </v-card-text>
</v-card>
</div>
</template>
Is there a way to make the v-card take up all remaining space in the div, regardless of the size of the header div? I've tried using flex, but the v-card is either right on top or overflowing the parent div at the bottom. Can someone provide some guidance on how to achieve this without resorting to hardcoded CSS values?