الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .container { border: 1px solid; } .div1, .div2, .div3 { float: left; width: 100px; height: 100px; line-height: 100px; text-align: center; background: deepskyblue; margin: 5px; } .float-fixer { clear: both; } </style> </head> <body> <h1>CSS Clear Both</h1> <div class="container"> <div class="div1">1</div> <div class="div2">2</div> <div class="div3">3</div> <!-- هذا الوسم يوقف التدفق السابق --> <div class="float-fixer"></div> </div> <p>The size of previous div looks correct and this paragraph is not floating anymore!</p> </body> </html>