Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- lazy loading
- DOM
- virtual dom
- 렌더링 최적화
- 라우터
- 예외처리
- cubic-bezier
- 자바스크립트 #javascript #렌더링 #렌더링순서
- jest
- 안드로이드
- webpack
- vuetify
- vue-router
- 뷰
- vue #vue.js #font #web-font
- NavigationDuplicated
- css
- 장고
- vue.js
- Transition
- Django
- frontend
- 주니어 개발자
- 프론트엔드
- 세션
- VUE
- 성능 최적화
- Router
- 세션스토리지
- 로컬스토리지
Archives
- Today
- Total
한준호
Display 본문
728x90
■Display Property
<v-row no-gutters>
<v-col>
<span
class="pa-3 pl-1"
text-color="black"
style="display:inline-block; font-size:18px; font-weight:bold"
>
{{ $t("Uopload Resume") }}
</span>
<v-file-input
placeholder="No file chosen"
accept="image/*,.pdf,.doc,.txt"
outlined
dense
hide-details
ref="imageFile"
v-model="imageFile"
@change="handleImageUpload()"
class="d-inline-block"
color="white"
dark
prepend-icon=""
style="font-size:18px;font-color:#ffffff;background-color:#fd7300;"
>
<template v-slot:append>
<v-progress-circular
v-if="isProgress"
indeterminate
size="25"
color="white"
></v-progress-circular>
</template>
</v-file-input>
</v-col>
</v-row>
파일을 첨부할 수 있는 v-file-input 태그이다.
이는 다음과 같은 레이아웃을 가진다
다음과 같이 부트스트랩의 inline-block 속성을 추가한다면
<v-file-input class="d-inline-block"></v-file-input>
다음과 같이 사용하는 공간 만큼 크기가 줄어들게 된다.
getbootstrap.com/docs/4.0/utilities/display/
Display property
Quickly and responsively toggle the display value of components and more with our display utilities. Includes support for some of the more common values, as well as some extras for controlling display when printing.
getbootstrap.com
728x90
'Frontend > css' 카테고리의 다른 글
text overflow 활용 (0) | 2021.09.30 |
---|---|
(개꿀팁) div 수직 정렬 (0) | 2021.04.26 |
div align (0) | 2021.03.24 |
Grid System[Vuetify] (0) | 2021.03.24 |
[Bootstrap] 부트스트랩 (0) | 2021.03.08 |
Comments