الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: column; justify-content: space-evenly; background-color: dodgerblue; height: 300px; } .flex-container > div { background-color: #f1f1f1; width: 50px; line-height: 50px; font-size: 24px; text-align: center; border: 2px solid; } </style> </head> <body> <h1>CSS justify-content: space-evenly</h1> <p>If justify-content is set to space-evenly, a space with same size of element appear before and after it.</p> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> </div> </body> </html>