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>