跳到主要内容 跳到文档导航
Check
in English

成分

了解我们如何以及为什么我们以响应方式以及使用基类和修饰类构建几乎所有组件。

在本页面

基类

Bootstrap 的组件主要是使用基本修饰符命名法构建的。我们将尽可能多的共享属性分组到一个基类中,例如.btn,然后将每个变体的单独样式分组到修饰符类中,例如.btn-primaryor .btn-success

为了构建我们的修饰符类,我们使用 Sass 的@each循环来迭代 Sass 映射。这对于我们生成组件的$theme-colors变体以及为每个断点创建响应变体特别有用。当您自定义这些 Sass 映射并重新编译时,您将自动看到您的更改反映在这些循环中。

查看我们的 Sass 映射和循环文档,了解如何自定义这些循环并将 Bootstrap 的基本修饰符方法扩展到您自己的代码。

修饰符

Bootstrap 的许多组件都是使用基本修饰符类方法构建的。这意味着大部分样式都包含在基类中(例如,.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 映射和变量的更多信息和示例,请参阅Grid 文档的 Sass 部分

创建你自己的

我们鼓励您在使用 Bootstrap 构建以创建自己的组件时采用这些准则。我们已经将这种方法自己扩展到我们的文档和示例中的自定义组件。像我们的标注这样的组件就像我们提供的带有基类和修饰符类的组件一样构建。

这是一个标注。我们为我们的文档定制了它,因此我们给您的信息会脱颖而出。它通过修饰符类具有三个变体。
<div class="callout">...</div>

在您的 CSS 中,您将拥有类似于以下内容的内容,其中大部分样式是通过.callout. 然后,通过修饰符类控制每个变体之间的独特样式。

// Base class
.callout {}

// Modifier classes
.callout-info {}
.callout-warning {}
.callout-danger {}

对于标注,这种独特的样式只是一个border-left-color. 当您将该基类与其中一个修饰符类结合使用时,您将获得完整的组件系列:

这是一个信息标注。示例文本以显示它的实际效果。
这是一个警告标注。示例文本以显示它的实际效果。
这是一个危险的标注。示例文本以显示它的实际效果。