I use vuetify layout, and I wanna make button at right side, but I found align-end
which is vuetify property does not work, I use offset-xs9
to make button right side, but the button is being center in v-flex
, how to make it on end ? help thanks
code like:
<div id="app">
<v-app id="inspire">
<v-layout row wrap align-end>
<v-flex xs3 offset-xs9 align-end>
<div>
<v-btn primary dark>Normal</v-btn>
</div>
</v-flex>
</v-layout>
</v-app>
</div>
and online codepen
You have to use
text-xs-right
in<v-flex>
tag instead ofalign-end
(see https://vuetifyjs.com/ru/layout/alignment).