الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { position: static; top: 20px; left: 30px; border: 2px solid deepskyblue; } </style> </head> <body> <h1>Static Position</h1> <p>top, right, left and bottom properties has no effect on element with static position.</p> <div>This div element has position: static;</div> </body> </html>