반응형
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
- c#
- bucket max-key
- sequelize
- sort
- xlsx
- JavaScript
- Vuetify
- v-text-field height
- vuetifyjs
- MySQL
- kotlin
- Electron
- 동일 프로세스
- error
- NUXT
- bucket cors
- v-select
- nodejs
- 프로세스 방지
- onsenui
- naver storage bucket error
- electron-nuxt
- CSS
- Vue
- naver storage
- vuejs
- f035d
- 동일 프로그램
- Android
- onsen-ui
Archives
- Today
- Total
앙큼한 개발기록
부트스트랩 모달 가운데 띄우기 본문
부트스트랩 모달 가운데 띄우기
bootstrap modal centering
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /* modal position(center)*/ .modal { text-align: center; } @@media screen and (min-width: 768px) { .modal:before { display: inline-block; vertical-align: middle; content: " "; height: 100%; } } .modal-dialog { display: inline-block; text-align: left; vertical-align: middle; } | cs |
이거 넣으면 끝
Comments