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

位置

使用這些助手快速配置元素的位置。

固定頂

將元素從邊到邊定位在視口的頂部。確保您了解項目中固定位置的影響;您可能需要添加額外的 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>