반응형
bootstrap의 container속성을 사용자가 지정하여 설정할 수 있다.
공식 문서
https://getbootstrap.com/docs/5.1/layout/containers/
Containers
Containers are a fundamental building block of Bootstrap that contain, pad, and align your content within a given device or viewport.
getbootstrap.com
main.scss
// 사용자 너비 지정
$container-max-widths: (
sm: 540px,
md: 704px,
lg: 964px,
xl: 1140px,
xxl: 1364px
);
반응형
'프론트엔드 > Vue.js' 카테고리의 다른 글
404 페이지 만들기 (0) | 2021.11.03 |
---|---|
로딩 화면 만들기 (0) | 2021.09.27 |
비동기 - API 비동기 처리 연습 (0) | 2021.09.13 |
비동기 예외 처리(then, catch, finally) (0) | 2021.09.10 |
비동기 - 콜백(callback)과 프로미스 객체 (0) | 2021.09.09 |