본문 바로가기
프로그래밍/vue 3

vuetify class 속성 ( with 3.0 alpha )

by Flow.X 2022. 1. 16.
728x90

텍스트 및 백그라운드

class 의 속성이 prefix에  {text|bg}-{color} 값이다.

샘플에서 안되서 계속보다보니 바껴 있구나.  ( 아까운 내 시간...)

<h1 class="text-red bg-red">Hello</h1>

수직정렬

align="{start|center|end}" 이다 

<v-row align="{start|center|end}">
  <v-col>
    <v-card outlined>
      안녕
    </v-card>
  </v-col>
  <v-col>
    <v-card outlined>
      안녕
    </v-card>
  </v-col>
</v-row>

 

<v-col> align-self속성

  <v-row
    :style="{height:'120px'}" <!--인라인 스타일-->
    align="center"
    class="bg-green"
  >
    <v-col align-self="end">
      <v-card outlined>
        col
      </v-card>
    </v-col>
    <v-col align-self="center">
      <v-card outlined>
        col
      </v-card>
    </v-col>
    <v-col align-self="start">
      <v-card outlined>
        col
      </v-card>
    </v-col>
 </v-row>

vutify v-col align-self 속성

728x90

'프로그래밍 > vue 3' 카테고리의 다른 글

vuetify justify 속성  (0) 2022.01.16
vue 3 router 사용하기  (0) 2022.01.15
VSCode(Visual Studio Code) ESLint 설정  (0) 2022.01.15
01-02. 기본 구조  (0) 2022.01.06
01-08. 컴포넌트 만들기  (0) 2022.01.06