본문 바로가기
프론트엔드/Vue.js

container 너비 사용자 지정

by step 1 2021. 9. 23.
반응형

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
);

 

 

반응형