Skip to main content Skip to docs navigation

定位(Position)

使用这些助手可以快速配置元素的位置。

固定顶部

将元素从边缘定位到视口顶部。请确保您了解固定位置在项目中的影响;您可能需要添加额外的 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>