跳至主要内容 跳至文档导航

使用这些帮助程序快速配置元素的位置。

固定顶部

将元素从边缘定位在视区的顶部。确保您了解项目中固定位置的后果;您可能需要添加其他 CSS。

<div class="fixed-top">...</div>

固定底部

将元素从边缘到边缘放置在视区的底部。确保您了解项目中固定位置的后果;您可能需要添加其他 CSS。

<div class="fixed-bottom">...</div>

粘在顶部

将元素从边缘定位在视口顶部,但仅在滚动过去之后。

<div class="sticky-top">...</div>

响应式粘在顶部

.sticky-top实用程序也存在响应式变体。

<div class="sticky-sm-top">Stick to the top on viewports sized SM (small) or wider</div>
<div class="sticky-md-top">Stick to the top on viewports sized MD (medium) or wider</div>
<div class="sticky-lg-top">Stick to the top on viewports sized LG (large) or wider</div>
<div class="sticky-xl-top">Stick to the top on viewports sized XL (extra-large) or wider</div>
<div class="sticky-xxl-top">Stick to the top on viewports sized XXL (extra-extra-large) or wider</div>

粘在底部

将元素从边缘定位在视区的底部,但仅在滚动过去之后。

<div class="sticky-bottom">...</div>

响应式粘在底部

.sticky-bottom实用程序也存在响应式变体。

<div class="sticky-sm-bottom">Stick to the bottom on viewports sized SM (small) or wider</div>
<div class="sticky-md-bottom">Stick to the bottom on viewports sized MD (medium) or wider</div>
<div class="sticky-lg-bottom">Stick to the bottom on viewports sized LG (large) or wider</div>
<div class="sticky-xl-bottom">Stick to the bottom on viewports sized XL (extra-large) or wider</div>
<div class="sticky-xxl-bottom">Stick to the bottom on viewports sized XXL (extra-extra-large) or wider</div>