Center content vertically on Vuetify

后端 未结 6 1608
生来不讨喜
生来不讨喜 2021-01-31 07:46

Is there a way to center content vertically in Vuetify?

With the text-xs-center helper class, the content gets centered horizontally only:

&         


        
6条回答
  •  故里飘歌
    2021-01-31 07:54

    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:

    
        
            
                Centered both vertically and horizontally
            
        
    
    
    • 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.

提交回复
热议问题