الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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-basis: auto</h1> <p>This property make the browser automatically calculate the size for the element based on its content.</p> <div class="flex-container"> <div style="flex-basis: auto">1</div> <div>2</div> <div>3</div> </div> <p>Resize the window to notice how elements size can be changed in need.</p> </body> </html>