Bootstrap 그리드 시스템에 대해 배웠습니다.
bootstrap의 그리드 시스템이란?
그리드 시스템이란?
그리드 시스템의 장점
그리드 시스템의 요소
container
행
col
참고 기사
container-fluid·row·col로 페이지를 둘러싼다
col-12로 두 개의 둘러싸인 패턴
## /views/big/new.html.erb
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h1>Bootstrap 使ってみた</h1>
</div>
<div class="col-12">
<h1>Bootstrap 使ってみた</h1>
</div>
</div>
</div>
col-6으로 두 개의 둘러싸인 패턴
<div class="container-fluid">
<div class="row">
<div class="col-6">
<h1>Bootstrap 使ってみた</h1>
</div>
<div class="col-6">
<h1>Bootstrap 使ってみた</h1>
</div>
</div>
</div>
해설
Reference
이 문제에 관하여(Bootstrap 그리드 시스템에 대해 배웠습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/chiitaro_gori/items/e8ca706494cde8816118텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)