flex-shrink

on

Get affordable and hassle-free WordPress hosting plans with Cloudways — start your free trial today.

The flex-shrink property is a sub-property of the Flexible Box Layout module.

It specifies the “flex shrink factor” which determines how much the flex item will shrink relative to the rest of the flex items in the flex container when there isn’t enough space on the row.

.element {
  flex-shrink: 2;
}

When omitted, it is set to 1 and the flex shrink factor is multiplied by the flex basis when distributing negative space.

Syntax

flex-shrink: <number>

Demo

To see the full potential of this demo, you would have to be able to resize its width, so please have a look at it on CodePen directly.

In this demo:

  • The first item has flex: 1 1 20em (shorthand for flex-grow: 1, flex-shrink: 1, flex-basis: 20em)
  • The second item has flex: 2 2 20em (shorthand for flex-grow: 2, flex-shrink: 2, flex-basis: 20em)

Both flex items want to be 20em wide. Because of the flex-grow (first parameter), if the flex container is larger than 40em, the 2nd child will take twice as much leftover space as the first child. But if the parent element is less than 40em wide, then the 2nd child will have twice as much shaved off of it as the 1st child, making it look smaller (because of the 2nd parameter, flex-shrink).

Browser support

For more informations about how to mix syntaxes in order to get the best browser support, please refer to “Using Flexbox” or this article from DevOpera.

More information