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