الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: row; background-color: dodgerblue; } .flex-container > div { background-color: #f1f1f1; padding: 15px 20px; margin: 10px; font-size: 18px; } </style> </head> <body> <h1>CSS flex items order</h1> <p>The "order" property allows you to set the order of displaying the times.</p> <div class="flex-container"> <div style="order: 0">1</div> <div style="order: 2">2</div> <div style="order: 1">3</div> <div style="order: 3">4</div> </div> <p>By default, all items has order 0.</p> </body> </html>