Bootstrap
CDN활용을 통해 Bootstrap에 작성된 CSS, JS를 활용(클래스로)
head의 맨 밑에 추가
1
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
body의 맨 밑에 추가
1
2
3
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
불러들이는 순서 때문에..
- CSS를 만들어 놓은거를 클래스로 추가해 사용
Spacing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# margin border를 기준으로 외부 여백
<h1 class="m-5"> 전체
<h1 class="ml-5"> 왼쪽
<h1 class="mx-0"> 양쪽(x축)
<h1 class="my-0"> 위아래(y축)
mt-0 0 0px
mt-1 0.25 4px <!-- 0.25rem 으로 구현되어 있음 -->
mt-2 0.5 8px
mt-3 1 16px
mt-4 1.5 24px
mt-5 3 48px 까지 존재
mx-auto
# padding border를 기준으로 내부 여백
class="py-0"
m-n0 음수
Color
.bg-color
primary : 파란색 // .bg-primary
secondary : 회색
success : 초록색
info : 하늘색
warning : 노란색
danger : 빨간색
light : 흰색
dark : 검정색
.alert-color
alert-primary
.btn-color
btn-secondary
Border - 테두리
.border-color
.rounded-circle / pill
Display
.d-block : 왼쪽부터 오른쪽 전체
.d-inline
.d-None
반응형 맛보기
.d-sm-none
position
.position-static
text
.text-left
.text-right
.text-center
breakpoint
-
sm // md // lg // xl
-
small // medium // large // extra large
font
.font-weight-bold
앞으로 컴포넌트들은 공식문서에서 확인하기
https://getbootstrap.com/
One of three columns
One of three columns
One of three columns
{% for i in range(10) %}
9 mins
{% endfor %}
아 배가 준나 고파요