bootstrap 스마트폰 대응을 의식
6636 단어 Bootstrap
참고 사이트
jumbotron 톱 페이지하는 캐치 카피의 녀석 && container
container
너비가 가로 너비를 변경하는 것 같습니다
| | Extra small |
|:--|:--|:--|:--|:--|:--|
| <576px | Small |
| ≥576px | Medium |
| ≥768px | Large |
| ≥992px | Extra large |
| ≥1200px |
| max-width | 100% | 540px | 720px | 960px | 1140px |
수평은 항상 100%
그리드 시스템
col
가 스마트폰일까? .col- (extra small devices - screen width less than 576px)
.col-sm- (small devices - screen width equal to or greater than 576px)
.col-md- (medium devices - screen width equal to or greater than 768px) # スマホ横幅は750pxでOKらしい 2018年の記事
.col-lg- (large devices - screen width equal to or greater than 992px)
.col-xl- (xlarge devices - screen width equal to or greater than 1200px) # macpro width 1400 1/2 700
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>column</h3>
<p>hello</p>
</div>
<div class="col-sm-4">
<h3>head</h3>
<p>hello</p>
</div>
<div class="col-sm-4">
<h3>yahoo</h3>
<p>hello</p>
</div>
</div>
sp도
세로로 표시됩니다.
<div class="container">
<div class="row">
<div class="col-sm-4 col-3">
<h3>column</h3>
<p>hello</p>
</div>
<div class="col-sm-4 col-3">
<h3>head</h3>
<p>hello</p>
</div>
<div class="col-sm-4 col-3">
<h3>yahoo</h3>
<p>hello</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col">
<h3>column</h3>
<p>hello</p>
</div>
<div class="col">
<h3>head</h3>
<p>hello</p>
</div>
<div class="col">
<h3>yahoo</h3>
<p>hello</p>
</div>
<div class="col">
<h3>head</h3>
<p>hello</p>
</div>
<div class="col">
<h3>yahoo</h3>
<p>hello</p>
</div>
</div>
</div>
tutorial
Reference
이 문제에 관하여(bootstrap 스마트폰 대응을 의식), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tech-aki/items/94f92be62f9c066bbd1d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)