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
- 열공하자
- Partition
- 실시간알림
- 개발자
- node.js
- 파티셔닝
- SSE
- localStorage
- 성장기
- Lag
- ServerSentEvent
- Node.js기본
- node.js란
- partitioning
- PostgreSQL
- EventSource
- mariadb
- frontend
Archives
- Today
- Total
써치킴의 우당탕탕 개발 블로그
[CSS프레임워크 BootStrap][ch1] 버튼과 버튼 그룹 본문
1. 부트스트랩 웹 페이지 진입 (https://getbootstrap.com/)
2. Docs > 왼쪽 메뉴 중 Components > Buttons
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
btn-group라는 클래스로 버튼을 묶어주면 버튼을 그룹화 시켜줌
Components > Button group 참고
<div class="btn-group">
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
</div>
-outline-을 추가하면 버튼 외부 선이 생김을 확인 할 수 있다.
Components > Buttons > Outline buttons 참고
<div class="btn-group">
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-success">Success</button>
</div>
'알아두자 HTML, CSS' 카테고리의 다른 글
[CSS프레임워크 BootStrap][ch1] 툴팁 (0) | 2022.02.19 |
---|---|
[CSS프레임워크 BootStrap][ch1] 모달 (0) | 2022.02.19 |
[CSS프레임워크 BootStrap][ch1] CDN 프로젝트 생성 (0) | 2022.02.19 |
[HTML/CSS][Ch9][스타벅스] 최종 (0) | 2022.01.21 |
[HTML/CSS][Ch9][스타벅스] 페이지 상단으로 이동(ScrollTo) (0) | 2022.01.21 |
Comments