in English
堆栈
建立在我们的 flexbox 实用程序之上的速记助手,使组件布局比以往更快、更容易。
在本页面
Stacks 提供了一种快捷方式,可以应用许多 flexbox 属性在 Bootstrap 中快速轻松地创建布局。这个概念和实施的所有功劳都归功于开源Pylon 项目。
小心!Safari 最近添加了对带有 flexbox 的间隙实用程序的支持,因此请考虑验证您的预期浏览器支持。网格布局应该没有问题。
阅读更多。
垂直的
用于.vstack
创建垂直布局。默认情况下,堆叠的项目是全宽的。使用.gap-*
实用程序在项目之间添加空间。
第一项
第二项
第三项
<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-*
实用程序在项目之间添加空间。
第一项
第二项
第三项
<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
如垫片:
第一项
第二项
第三项
<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>
并使用垂直规则:
第一项
第二项
第三项
<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
堆叠按钮和其他元素:
<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
:
<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;
}