الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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 20px; margin: 10px; font-size: 18px; } </style> </head> <body> <h1>CSS align-self: flex-start</h1> <p>This property stacks the item at the beginning.</p> <div class="flex-container"> <div>1</div> <div style="align-self: flex-start">2</div> <div>3</div> </div> </body> </html>