位置
使用这些帮助程序快速配置元素的位置。
在本页
固定顶部
将元素定位在视口的顶部,从边缘到边缘。务必了解固定位置在项目中的影响;可能需要添加其他 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>