vuetify center items into v-flex

后端 未结 3 867
生来不讨喜
生来不讨喜 2020-12-09 08:08

I\'m trying to center a into a . Since is a flexbox div, I use justify-center

3条回答
  •  既然无缘
    2020-12-09 08:38

    v-flex does not have a display flex! Inspect v-flex in your browser and you will find out it is just a simple block div.

    So, you should override it with display: flex in your HTML or CSS to make it work with justify-content.

提交回复
热议问题