PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> #main { width: 250px; height: 100px; border: 1px solid #88c999; display: flex; } #main div { flex-grow: 1; flex-shrink: 1; flex-basis: 100px; } #main div:nth-of-type(2) { flex-shrink: 3; } </style> </head> <body> <h1>flex-shrink property example</h1> <div id="main"> <div style="background-color:yellow;"></div> <div style="background-color:lightgreen;"></div> <div style="background-color:brown;"></div> <div style="background-color:purple;"></div> <div style="background-color:red;"></div> </div> <p><b>Note:</b> Internet Explorer 10 and earlier versions do not support the flex-shrink property.</p> </body> </html>