الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: column; align-items: stretch; background-color: dodgerblue; height: 200px; } .flex-container > div { background-color: #f1f1f1; padding: 15px; margin: 10px; font-size: 18px; } </style> </head> <body> <h1>CSS align-items: stretch</h1> <p>When flex-direction is set to column and align-items is set to stretch, elements width will stretch to the maximum.</p> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> </div> </body> </html>