الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .sticky { position: sticky; top: 0; padding: 10px; border: 2px solid deepskyblue; } </style> </head> <body> <h1>Sticky Position</h1> <div class="sticky"> This div has position sticky </div> <p style="padding-bottom: 2000px;"> Scroll down to see how the sticky element will stick at the top. </p> </body> </html>