v-container
does not support attributes like xs12 sm12 md16 lg12
. You should use the cols
(for xs
), sm
, md
and lg
attributes of v-col
. And make sure that each breakpoint uses smaller number of grid cells than the previous one so that more items fit in the same row on larger screens. That is, it should look like this:
<v-container class = "big-container" fluid>
<v-row justify="space-between" align="start">
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 1</v-col>
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 2</v-col>
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 3</v-col>
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 4</v-col>
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 5</v-col>
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 6</v-col>
<v-col cols = "12" sm="8" md="6" lg="3" xl="1">card 7</v-col>
</v-row>
</v-container>