概述
用於佈局 Bootstrap 項目的組件和選項,包括包裝容器、強大的網格系統、靈活的媒體對象和響應式實用程序類。
容器
容器是 Bootstrap 中最基本的佈局元素,在使用我們默認的網格系統時是必需的。容器用於包含、填充和(有時)將內容居中。雖然容器可以嵌套,但大多數佈局不需要嵌套容器。
Bootstrap 帶有三個不同的容器:
.container
,它max-width
在每個響應斷點處設置 a.container-fluid
,width: 100%
在所有斷點處.container-{breakpoint}
,width: 100%
直到指定斷點
下表說明了每個容器max-width
與原始容器的比較.container
以及.container-fluid
跨每個斷點的比較。
在我們的Grid 示例中查看它們並進行比較。
超小 <576px |
小 ≥576px |
中 ≥768px |
大 ≥992px |
特大 ≥1200px |
|
---|---|---|---|---|---|
.container |
100% | 540像素 | 720像素 | 960像素 | 1140像素 |
.container-sm |
100% | 540像素 | 720像素 | 960像素 | 1140像素 |
.container-md |
100% | 100% | 720像素 | 960像素 | 1140像素 |
.container-lg |
100% | 100% | 100% | 960像素 | 1140像素 |
.container-xl |
100% | 100% | 100% | 100% | 1140像素 |
.container-fluid |
100% | 100% | 100% | 100% | 100% |
一體
我們的默認.container
類是一個響應式、固定寬度的容器,這意味著它max-width
在每個斷點處都會發生變化。
<div class="container">
<!-- Content here -->
</div>
體液
用於.container-fluid
全寬容器,跨越視口的整個寬度。
<div class="container-fluid">
...
</div>
響應式
響應式容器是 Bootstrap v4.4 中的新功能。它們允許您指定一個 100% 寬的類,直到達到指定的斷點,之後我們max-width
為每個更高的斷點應用 s。例如,在到達斷點.container-sm
之前是 100% 寬,在斷點處將使用、和sm
放大。md
lg
xl
<div class="container-sm">100% wide until small breakpoint</div>
<div class="container-md">100% wide until medium breakpoint</div>
<div class="container-lg">100% wide until large breakpoint</div>
<div class="container-xl">100% wide until extra large breakpoint</div>
響應式斷點
由於 Bootstrap 是首先開發為移動設備的,因此我們使用一些媒體查詢來為我們的佈局和界面創建合理的斷點。這些斷點主要基於最小視口寬度,並允許我們隨著視口的變化放大元素。
Bootstrap 主要在我們的 Sass 源文件中為我們的佈局、網格系統和組件使用以下媒體查詢範圍或斷點。
// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
由於我們在 Sass 中編寫源 CSS,我們所有的媒體查詢都可以通過 Sass mixins 獲得:
// No media query necessary for xs breakpoint as it's effectively `@media (min-width: 0) { ... }`
@include media-breakpoint-up(sm) { ... }
@include media-breakpoint-up(md) { ... }
@include media-breakpoint-up(lg) { ... }
@include media-breakpoint-up(xl) { ... }
// Example: Hide starting at `min-width: 0`, and then show at the `sm` breakpoint
.custom-class {
display: none;
}
@include media-breakpoint-up(sm) {
.custom-class {
display: block;
}
}
我們偶爾會使用相反方向的媒體查詢(給定的屏幕尺寸或更小):
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { ... }
// Small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) { ... }
// Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) { ... }
// Large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) { ... }
// Extra large devices (large desktops)
// No media query since the extra-large breakpoint has no upper bound on its width
同樣,這些媒體查詢也可以通過 Sass mixins 獲得:
@include media-breakpoint-down(xs) { ... }
@include media-breakpoint-down(sm) { ... }
@include media-breakpoint-down(md) { ... }
@include media-breakpoint-down(lg) { ... }
// No media query necessary for xl breakpoint as it has no upper bound on its width
// Example: Style from medium breakpoint and down
@include media-breakpoint-down(md) {
.custom-class {
display: block;
}
}
還有媒體查詢和混合使用最小和最大斷點寬度來定位單個屏幕尺寸段。
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { ... }
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) { ... }
// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
這些媒體查詢也可以通過 Sass mixins 獲得:
@include media-breakpoint-only(xs) { ... }
@include media-breakpoint-only(sm) { ... }
@include media-breakpoint-only(md) { ... }
@include media-breakpoint-only(lg) { ... }
@include media-breakpoint-only(xl) { ... }
同樣,媒體查詢可能跨越多個斷點寬度:
// Example
// Apply styles starting from medium devices and up to extra large devices
@media (min-width: 768px) and (max-width: 1199.98px) { ... }
針對相同屏幕尺寸範圍的 Sass mixin 將是:
@include media-breakpoint-between(md, xl) { ... }
Z指數
幾個 Bootstrap 組件利用z-index
CSS 屬性,通過提供第三個軸來排列內容來幫助控制佈局。我們在 Bootstrap 中使用默認的 z-index 比例,該比例旨在正確分層導航、工具提示和彈出框、模式等。
這些較高的值從任意數字開始,足夠高且足夠具體,可以理想地避免衝突。我們需要在我們的分層組件(工具提示、彈出框、導航欄、下拉菜單、模式)中使用這些標準集,以便我們可以在行為上保持合理一致。我們沒有理由不能使用100
+ 或500
+。
我們不鼓勵定制這些個人價值觀;如果你改變一個,你可能需要全部改變。
$zindex-dropdown: 1000 !default;
$zindex-sticky: 1020 !default;
$zindex-fixed: 1030 !default;
$zindex-modal-backdrop: 1040 !default;
$zindex-modal: 1050 !default;
$zindex-popover: 1060 !default;
$zindex-tooltip: 1070 !default;
為了處理組件內的重疊邊界(例如,輸入組中的按鈕和輸入),我們使用低個位數z-index
的1
、2
和3
來表示默認、懸停和活動狀態。在懸停/聚焦/激活時,我們將具有更高z-index
值的特定元素置於最前面,以在兄弟元素上顯示它們的邊框。