👶🏻 언니, 컨테이너가 뭐야?
👩🏻💻컨테이너는 부트스트랩에서 가장 기본적인 레이아웃 요소야.
컨테이너는 웹 페이지의 내용을 감싸는 박스로, 그 안에 콘텐츠를 배치하는데 사용되곤 해.
부트스트랩에서 컨테이너의 클래스(class)를 사용하여 반응형 웹을 만들 수 있어
고정 너비를 가진 컨테이너를 생성한다.
<div class="container">
<p>행복한 하루 보내세용 (❁´◡`❁)</p>
</div>
전체 너비를 가진 컨테이너를 생성한다.
가로 해상도에 상관없이 항상 width가 100%의 값을 갖는다.
<h1 class="container-fluid bg-primary">container-fluid 적용0</h1>
<h1 class="container bg-danger-subtle">container-fluid 적용x</h1>
https://getbootstrap.com/docs/5.3/layout/containers/#how-they-work