Center content vertically on Vuetify Center content vertically on Vuetify vue.js vue.js

Center content vertically on Vuetify


Update for new vuetify version

In v.2.x.x , we can use align and justify. We have below options for setup the horizontal and vertical alignment.

  1. PROPS align : 'start','center','end','baseline','stretch'

  2. PRPS justify : 'start','center','end','space-around','space-between'

<v-container fill-height fluid>  <v-row align="center"      justify="center">      <v-col></v-col>  </v-row></v-container>

For more details please refer this vuetify grid-system and you could check here with working codepen demo.


Original answer

You could use align-center for layout and fill-height for container.

Demo with v1.x.x

new Vue({  el: '#app' })
.bg{    background: gray;    color: #fff;    font-size: 18px;}
<link href="https://cdn.jsdelivr.net/npm/vuetify@1.2.2/dist/vuetify.min.css" rel="stylesheet" /><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script><script src="https://cdn.jsdelivr.net/npm/vuetify@1.2.2/dist/vuetify.min.js"></script><div id="app">  <v-app>      <v-container bg fill-height grid-list-md text-xs-center>        <v-layout row wrap align-center>          <v-flex>            Hello I am center to vertically using "align-center".          </v-flex>        </v-layout>      </v-container>  </v-app></div>