الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: row; flex-wrap: wrap; background-color: dodgerblue; } .flex-container > div { background-color: #f1f1f1; width: 50px; line-height: 50px; margin: 10px; font-size: 24px; text-align: center; } </style> </head> <body> <h1>CSS flex-wrap: wrap</h1> <p>When flex-direction is set to row and flex-wrap is set to wrap, elements will appear on new lines if no space available.</p> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> </div> <p>Resize the window to notice how elements positions will change.</p> </body> </html>