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