Skip to main content Skip to docs navigation

الموضع (Position)

استخدم هذه المساعدات لتهيئة موضع عنصر ما بسرعة.

التثبيت العلوي المطلق (Fixed top)

ضع عنصراً في أعلى منطقة العرض (viewport)، من الحافة إلى الحافة. تأكد من فهمك لتداعيات الموضع الثابت (fixed position) في مشروعك؛ فقد تحتاج إلى إضافة CSS إضافية.

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

التثبيت السفلي المطلق (Fixed bottom)

ضع عنصراً في أسفل منطقة العرض (viewport)، من الحافة إلى الحافة. تأكد من فهمك لتداعيات الموضع الثابت (fixed position) في مشروعك؛ فقد تحتاج إلى إضافة CSS إضافية.

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

تثبيت مرن في الأعلى عند الوصول (Sticky top)

ضع عنصراً في أعلى منطقة العرض (viewport)، من الحافة إلى الحافة، ولكن فقط بعد التمرير متجاوزاً إياه.

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

تثبيت مرن في الأعلى متوافق مع الشاشات

توجد أيضاً متغيرات متوافقة مع الشاشات (Responsive) لأداة .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>

تثبيت مرن في الأسفل عند الوصول (Sticky bottom)

ضع عنصراً في أسفل منطقة العرض (viewport)، من الحافة إلى الحافة، ولكن فقط بعد التمرير متجاوزاً إياه.

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

تثبيت مرن بالأسفل متوافق مع الشاشات (Responsive sticky bottom)

توجد أيضاً متغيرات متوافقة مع الشاشات (Responsive) لأداة .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>