'Center content vertically on Vuetify
Is there a way to center content vertically in Vuetify?
With the text-xs-center helper class, the content gets centered horizontally only:
<v-container grid-list-md text-xs-center>
<v-layout row wrap>
<v-flex xs12>
Hello
</v-flex>
</v-layout>
From the API, I tested some other helper classes such as align-content-center but did not achieve the result.
Solution 1:[1]
In Vuetify 2.x, v-layout and v-flex are replaced by v-row and v-col respectively. To center the content both vertically and horizontally, we have to instruct the v-row component to do it:
<v-container fill-height>
<v-row justify="center" align="center">
<v-col cols="12" sm="4">
Centered both vertically and horizontally
</v-col>
</v-row>
</v-container>
- align="center" will center the content vertically inside the row
- justify="center" will center the content horizontally inside the row
- fill-height will center the whole content compared to the page.
Solution 2:[2]
Here's another approach using Vuetify grid system available in Vuetify 2.x: https://vuetifyjs.com/en/components/grids
<v-container>
<v-row align="center">
Hello I am center to vertically using "grid".
</v-row>
</v-container>
Solution 3:[3]
Still surprised that no one proposed the shortest solution with align-center justify-center to center content vertically and horizontally. Check this CodeSandbox and code below:
<v-container fluid fill-height>
<v-layout align-center justify-center>
<v-flex>
<!-- Some HTML elements... -->
</v-flex>
</v-layout>
</v-container>
Solution 4:[4]
FOR CARDS: Concise and works in v2+. This will get you a v-card with centered content HORIZONTALLY and VERTICALLY:
<v-card class="d-flex align-center justify-center" min-height="250">
Content here...
</v-card>
Solution 5:[5]
<v-container> has to be right after <template>, if there is a <div> in between, the vertical align will just not work.
<template>
<v-container fill-height>
<v-row class="justify-center align-center">
<v-col cols="12" sm="4">
Centered both vertically and horizontally
</v-col>
</v-row>
</v-container>
</template>
Solution 6:[6]
For the new Vuetify v3.0.0.0-beta this worked for me:
<v-container class="fill-height">
<v-row align="center" justify="center" class="fill-height">
<p>Center</p>
</v-row>
</v-container>
Solution 7:[7]
Without using rows or columns... you can center your main content of your vuetify app like this:
<v-app>
<v-main>
<v-container fluid fill-height>
<v-layout class="align-center justify-center">
<router-view></router-view>
</v-layout>
</v-container>
</v-main>
</v-app>
Solution 8:[8]
For me, align="center" was enough to center FOO vertically:
<v-row align="center">
<v-col>FOO</v-col>
</row>
Solution 9:[9]
In my exemple the first v-for will take up all of the parent element's spacing, the fill-heigh will take up all the available height. This way we can use a second v-row to position as best as possible.
<v-row class="fill-height">
<v-row align="center" justify="center">
try TOO
align="start" || align="center" || align="end" <br>
justify="start" || justify="center" || justify="end"
</v-row>
</v-row>
Plase check the grids docs here: https://vuetifyjs.com/en/components/grids/#justify
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
