الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .flex-container { display: flex; flex-direction: row; background-color: dodgerblue; } .flex-container > div { background-color: #f1f1f1; width: 500px; padding: 15px 20px; margin: 10px; font-size: 18px; text-align: center; } </style> </head> <body> <h1>CSS flex-shrink</h1> <p>This property specify how element will size will be shrinked.</p> <div class="flex-container"> <div style="flex-shrink: 1">1</div> <div style="flex-shrink: 2">2</div> <div style="flex-shrink: 3">3</div> </div> <p>Resize the window to notice how elements will be shrinked.</p> </body> </html>