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>