🚨 Get Your Free NFT Certificate Mint by Completing the Web3 Exam! START NOW

Code has been added to clipboard!

The CSS Flex-Shrink Property

Reading time 2 min
Published Aug 8, 2017
Updated Oct 15, 2019

Flex in CSS: shrink to fit

The CSS flex-shrink property lets you specify how much a flex item will shrink if there is not enough space for it to fit in the flex container:

Example
/* Safari 6.1 and above */
a:nth-of-type(1) {
    -webkit-flex-shrink: 2;  	
} 
/* Standard syntax */
a:nth-of-type(1) {
    flex-shrink: 2;
}

This property is a direct opposite of flex-grow. They are often used together, and you can also use the CSS flex shorthand for both of them.

DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

The CSS flex-shrink syntax

flex-shrink only requires specifying one value in a unitless number:

flex-shrink: value;

The default value for CSS flex-shrink is 1, which means the element cannot shrink further than the size required to fit its content. If you define 0 as the value, the flex item will not shrink at all. You cannot use negative values.

Just like flex-grow, CSS flex-shrink divides the space up among flex items according to the ratio defined by the specified values. The difference is that the space is negative in this case, which means the actual flex items shrink in size. If all the items have the same flex-shrink value, they all lose the same portion of size.

Imagine we have three items in the same flex container. See what their flex-shrink values specify:
First item flex-shrink: 1; Loses 1/6 of the space the container lacks to fit all the items
Second item flex-shrink: 3; Loses 3/6 (half) of the free space the container lacks to fit all the items
Third item flex-shrink: 2; Loses 2/6 (a third) of the free space the container lacks to fit all the items

Browser support

Browser image
Chrome
29+
Browser image
Edge
12+
Browser image
Firefox
20+
Browser image
IE
10+
Browser image
Opera
12.1+
Browser image
Safari
9+

Mobile browser support

Browser image
Chrome
29+
Browser image
Firefox
20+
Browser image
Opera
12.1+
Browser image
Safari
9+