티스토리 뷰
Client Technologies/Bootstrap
Bootstrap : Responsive Breakpoint, Display
Korean Eagle 2020. 6. 2. 03:20728x90
1. Responsive breakpoint는 부트스트랩에서 반응형 웹을 구현하기 위한 기본적인 도구이다.
1-1 5가지의 단계로 나누어져 있으며 xs, sm, md, lg, xl로 표현된다.
1-1-1 xs는 기본값이고 xs라고 쓰지 않는다. - 즉 0px이고 모든 경우에 다 적용된다.
1-1-2 sm은 576px 이상
1-1-3 md은 768px 이상
1-1-4 lg는 992px 이상
1-1-5 xl은 1200px 이상
1-2 위의 값은 언제 각 단계가 적용될지에 대한 min-width값이다. 즉 최소의 값들이다.
1-2-1 아래 값들은 모두 오버라이딩이되어 적용된다. 즉 현재 화면크기와 가장 가까운 미디어쿼리가 적용된다.
body {
background: red;
}
@media (min-width: 576px) {
body {
background: orange;
}
}
@media (min-width: 768px) {
body {
background: yellow;
}
}
@media (min-width: 992px) {
body {
background: green;
}
}
@media (min-width: 1200px) {
body {
background: blue;
}
}
2. Display는 각 테그의 표현 방식을 지정한다.
2-1 none -화면에서 사라짐, inline, inline-block, block, flex 정도가 많이 사용된다.
2-2 아래 첫 번째 덩어리는 d-inline, d-none이 동작하는 형태를 보여 주고 있고
2-3 두 번째 덩어리는 각 breakpoint에 따른 메시지 표출을 어떻게 하는지 보여준다.
2-4 중요한 것은 어떤 breakpoint 단계든 최소크기 이후에 추가적인 class가 없는 한 모든 width에 적용된다.
<div class="container">
<h1 class="bg-dark text-white">This is an h1 block</h1>
<h1 class="bg-dark text-white d-inline">This is an h1 inline</h1>
<h1 class="bg-dark text-white d-none">This is an h1 display: none</h1>
<span class="bg-info text-white">I AM A REGULAR SPAN</span>
<span class="bg-info text-white d-block">I AM A BLOCK SPAN</span>
<h1 class="d-none d-sm-block">HIDDEN ON XS</h1>
<h1 class="d-none d-md-block">HIDDEN ON XS and SM</h1>
</div>
<div class="container">
<h2>Current breakpoint is:
<span class="d-inline d-sm-none text-danger">XS</span>
<span class="d-none d-sm-inline d-md-none text-warning">SM</span>
<span class="d-none d-md-inline d-lg-none text-success">MD</span>
<span class="d-none d-lg-inline d-xl-none text-info">LG</span>
<span class="d-none d-xl-inline text-primary">XL</span>
</h2>
</div>
728x90
'Client Technologies > Bootstrap' 카테고리의 다른 글
Bootstrap : jsp form input template (0) | 2020.06.07 |
---|---|
Bootstrap : Grid Layout (0) | 2020.06.02 |
Bootstrap : Alert (0) | 2020.06.01 |
BootStrap : Template (0) | 2020.06.01 |
Bootstrap : Card에 이미지 고정비율로 삽입 (0) | 2020.05.15 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- Spring Security
- Validation
- Angular
- MYSQL
- 외부파일
- 상속
- XML
- Spring
- Many-To-Many
- one-to-one
- RestTemplate
- login
- Rest
- Security
- form
- crud
- 설정하기
- mapping
- hibernate
- 자바
- jsp
- 매핑
- 스프링
- one-to-many
- spring boot
- 로그인
- WebMvc
- 스프링부트
- 하이버네이트
- 설정
250x250