2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vuetifyで左右センター揃えにするサンプルコードの備忘録(justify="center") or (class="text-center")

Posted at

あれー!!
Vuetityでサクッとセンター揃え/中央揃えにするコードってどうだっけー!?
なんでセンター揃えにならないんや!なんでこんな簡単なことをすぐ忘れるんや!って人に向けた備忘録です。

HTML版

Flexboxのグリッドシステムでやりたい場合
v-colのcols="auto"にするのがポイント。これでカラムが自動的に小さくなり、v-rowの justify="center"が効いてくる。
no-guttersはお好みで。

<v-row no-gutters justify="center">
  <v-col cols="auto">
    <span>hogehoge</span>
  </v-col>
</v-row>

text-alignのCSSヘルパーでやりたい場合

<div class="text-center">
   Center揃えtext
</div>

PUG版

Flexboxのグリッドシステムでやりたい場合

v-row(no-gutters, justify='center')
    v-col(cols='auto')
        span hogehoge

text-alignのCSSヘルパーでやりたい場合

.text-center Center揃えtext

公式ドキュメント

ちゃんと読めば書いてあるけど。。。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?