الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: row; align-items: center; 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: center</h1> <p>When flex-direction is set to row and align-items is set to center, elements will vertically centered.</p> <div class="flex-container"> <div>1</div> <div>2<br>2</div> <div>3</div> </div> </body> </html>