الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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; text-align: center; } </style> </head> <body> <h1>CSS flex shorthand</h1> <p>The "flex" property allows you to set flex-grow, flex-shrink and flex-basis.</p> <div class="flex-container"> <div>1</div> <div style="flex: 0 1 300px">2</div> <div>3</div> </div> <p>Second item initial size is 300px and it can be shrinked if no space available.</p> <p>Resize the window to notice how element's size can changed.</p> </body> </html>