Is there a way to center content vertically in Vuetify?(有没有办法在Vuetify中将内容垂直居中?)
With thetext-xs-center
helper class, the content gets centered horizontally only:(使用text-xs-center
帮助器类,内容仅在水平方向居中:)
<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.(从API中 ,我测试了其他一些帮助器类,例如align-content-center
,但未实现结果。)
ask by Billal Begueradj translate from so