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