Spring til hovedindhold Spring til dokumentnavigation
Check
in English

Position

Brug disse hjælpere til hurtigt at konfigurere et elements position.

Fast top

Placer et element i toppen af ​​viewporten, fra kant til kant. Vær sikker på at du forstår konsekvenserne af fast position i dit projekt; du skal muligvis tilføje yderligere CSS.

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

Fast bund

Placer et element i bunden af ​​viewporten, fra kant til kant. Vær sikker på at du forstår konsekvenserne af fast position i dit projekt; du skal muligvis tilføje yderligere CSS.

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

Klæbende top

Placer et element i toppen af ​​viewporten, fra kant til kant, men først efter du har rullet forbi det.

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

Responsiv klæbrig top

Der findes også responsive variationer for .sticky-topnytte.

<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>

Klæbende bund

Placer et element i bunden af ​​visningsporten, fra kant til kant, men først efter du har rullet forbi det.

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

Responsiv klæbrig bund

Der findes også responsive variationer for .sticky-bottomnytte.

<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>