الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: row; background-color: dodgerblue; } .flex-container > div { background-color: #f1f1f1; padding: 15px 20px; margin: 10px; font-size: 18px; text-align: center; } </style> </head> <body> <h1>CSS flex-grow</h1> <p>This property specify how element size will be grow.</p> <div class="flex-container"> <div style="flex-grow: 1">1</div> <div>2</div> <div>3</div> </div> <p>Resize the window to notice how the second size will be grow.</p> </body> </html>