跳到主要內容 跳到文檔導航
Check
in English

堆棧

建立在我們的 flexbox 實用程序之上的速記助手,使組件佈局比以往更快、更容易。

在本頁面

Stacks 提供了一種快捷方式,可以應用許多 flexbox 屬性在 Bootstrap 中快速輕鬆地創建佈局。這個概念和實施的所有功勞都歸功於開源Pylon 項目

小心!Safari 最近添加了對帶有 flexbox 的間隙實用程序的支持,因此請考慮驗證您的預期瀏覽器支持。網格佈局應該沒有問題。 閱讀更多

垂直的

用於.vstack創建垂直佈局。默認情況下,堆疊的項目是全寬的。使用.gap-*實用程序在項目之間添加空間。

第一項
第二項
第三項
html
<div class="vstack gap-3">
  <div class="bg-light border">First item</div>
  <div class="bg-light border">Second item</div>
  <div class="bg-light border">Third item</div>
</div>

水平的

用於.hstack水平佈局。默認情況下,堆疊的項目垂直居中,並且只佔用它們必要的寬度。使用.gap-*實用程序在項目之間添加空間。

第一項
第二項
第三項
html
<div class="hstack gap-3">
  <div class="bg-light border">First item</div>
  <div class="bg-light border">Second item</div>
  <div class="bg-light border">Third item</div>
</div>

使用水平邊距實用程序,.ms-auto如墊片:

第一項
第二項
第三項
html
<div class="hstack gap-3">
  <div class="bg-light border">First item</div>
  <div class="bg-light border ms-auto">Second item</div>
  <div class="bg-light border">Third item</div>
</div>

並使用垂直規則

第一項
第二項
第三項
html
<div class="hstack gap-3">
  <div class="bg-light border">First item</div>
  <div class="bg-light border ms-auto">Second item</div>
  <div class="vr"></div>
  <div class="bg-light border">Third item</div>
</div>

例子

用於.vstack堆疊按鈕和其他元素:

html
<div class="vstack gap-2 col-md-5 mx-auto">
  <button type="button" class="btn btn-secondary">Save changes</button>
  <button type="button" class="btn btn-outline-secondary">Cancel</button>
</div>

創建一個內聯表單.hstack

html
<div class="hstack gap-3">
  <input class="form-control me-auto" type="text" placeholder="Add your item here..." aria-label="Add your item here...">
  <button type="button" class="btn btn-secondary">Submit</button>
  <div class="vr"></div>
  <button type="button" class="btn btn-outline-danger">Reset</button>
</div>

薩斯

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}