الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: row; flex-wrap: nowrap; 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: nowrap</h1> <p>When flex-direction is set to row and flex-wrap is set to nowrap, elements will not wrapped on a new line even if the space is not fit them.</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 will never wrapped on a new lines.</p> </body> </html>