الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .one { margin-bottom: 30px; border: 1px solid gray; } .two { margin-top: 30px; border: 1px solid gray; } </style> </head> <body> <h2>CSS margin shorthand</h2> <div class="one">bottom margin is collapsed.</div> <div class="two">top margin is collapsed.</div> <p>The margin bettween the two div is collapsed to a single margin of 30px height.</p> </body> </html>