الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { position: static; border: 2px solid deepskyblue; } </style> </head> <body> <h1>Static Position</h1> <p>Element with position: static; is positioned according to the normal flow of the page.</p> <div>This div element has position: static;</div> </body> </html>