الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; background-color: dodgerblue; } .flex-container > div { background-color: #f1f1f1; width: 50px; line-height: 50px; margin: 10px; font-size: 24px; text-align: center; } </style> </head> <body> <h1>CSS display: flex</h1> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> </div> <p>Direct childs inside the flex container become flexible items.</p> </body> </html>