구성품
기본 및 수정자 클래스를 사용하여 거의 모든 구성 요소를 반응형으로 구축하는 방법과 이유를 알아보세요.
기본 클래스
부트스트랩의 구성 요소는 크게 기본 수정자 명명법으로 구축됩니다. 가능한 한 많은 공유 속성을 와 같은 기본 클래스 .btn
로 그룹화한 다음 각 변형에 대한 개별 스타일을 .btn-primary
또는 와 같은 수정자 클래스로 그룹화 .btn-success
합니다.
수정자 클래스를 빌드하기 위해 Sass의 @each
루프를 사용하여 Sass 맵을 반복합니다. 이는 당사에서 구성 요소의 변형을 생성 $theme-colors
하고 각 중단점에 대한 반응형 변형을 생성하는 데 특히 유용합니다. 이러한 Sass 맵을 사용자 정의하고 다시 컴파일하면 이러한 루프에 반영된 변경 사항을 자동으로 볼 수 있습니다.
이러한 루프를 사용자 정의하고 부트스트랩의 기본 수정자 접근 방식을 자신의 코드로 확장하는 방법은 Sass 맵 및 루프 문서 를 확인하십시오 .
수정자
Bootstrap의 많은 구성 요소는 base-modifier 클래스 접근 방식으로 구축됩니다. 이는 스타일링의 대부분이 기본 클래스(예: .btn
)에 포함되는 반면 스타일 변형은 수정자 클래스(예: .btn-danger
)에 국한된다는 것을 의미합니다. 이러한 수정자 클래스는 수정자 클래스 $theme-colors
의 수와 이름을 사용자 정의하기 위해 맵에서 빌드됩니다.
다음은 및 구성 요소 $theme-colors
에 대한 수정자를 생성하기 위해 맵을 반복하는 방법에 대한 두 가지 예입니다 ..alert
.list-group
// Generate contextual modifier classes for colorizing the alert.
@each $state, $value in $theme-colors {
$alert-background: shift-color($value, $alert-bg-scale);
$alert-border: shift-color($value, $alert-border-scale);
$alert-color: shift-color($value, $alert-color-scale);
@if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) {
$alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale));
}
.alert-#{$state} {
@include alert-variant($alert-background, $alert-border, $alert-color);
}
}
// List group contextual variants
//
// Add modifier classes to change text and background color on individual items.
// Organizationally, this must come after the `:hover` states.
@each $state, $value in $theme-colors {
$list-group-variant-bg: shift-color($value, $list-group-item-bg-scale);
$list-group-variant-color: shift-color($value, $list-group-item-color-scale);
@if (contrast-ratio($list-group-variant-bg, $list-group-variant-color) < $min-contrast-ratio) {
$list-group-variant-color: mix($value, color-contrast($list-group-variant-bg), abs($list-group-item-color-scale));
}
@include list-group-item-variant($state, $list-group-variant-bg, $list-group-variant-color);
}
반응형
이러한 Sass 루프는 컬러 맵에만 국한되지 않습니다. 구성 요소의 반응형 변형을 생성할 수도 있습니다. 예를 들어 Sass 맵에 대한 @each
루프를 미디어 쿼리 포함과 혼합하는 드롭다운의 응답 정렬을 살펴보겠습니다 .$grid-breakpoints
// We deliberately hardcode the `bs-` prefix because we check
// this custom property in JS to determine Popper's positioning
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
.dropdown-menu#{$infix}-start {
--bs-position: start;
&[data-bs-popper] {
right: auto;
left: 0;
}
}
.dropdown-menu#{$infix}-end {
--bs-position: end;
&[data-bs-popper] {
right: 0;
left: auto;
}
}
}
}
를 수정하면 변경 $grid-breakpoints
사항이 해당 맵을 반복하는 모든 루프에 적용됩니다.
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px,
xxl: 1400px
);
Sass 맵과 변수를 수정하는 방법에 대한 자세한 정보와 예제 는 그리드 문서의 Sass 섹션을 참조하십시오 .
나만의 만들기
부트스트랩으로 빌드하여 고유한 구성 요소를 만들 때 이러한 지침을 채택하는 것이 좋습니다. 이 접근 방식을 설명서 및 예제의 사용자 지정 구성 요소로 확장했습니다. 콜아웃과 같은 구성 요소는 기본 및 수정자 클래스가 있는 제공된 구성 요소와 같이 빌드됩니다.
<div class="callout">...</div>
CSS에서 대부분의 스타일링이 를 통해 수행되는 다음과 같은 것이 .callout
있습니다. 그런 다음 수정자 클래스를 통해 각 변형 간의 고유한 스타일을 제어합니다.
// Base class
.callout {}
// Modifier classes
.callout-info {}
.callout-warning {}
.callout-danger {}
콜아웃의 경우 고유한 스타일이 바로 border-left-color
. 해당 기본 클래스를 수정자 클래스 중 하나와 결합하면 완전한 구성 요소 제품군을 얻을 수 있습니다.