Flex-shrink Solution

This lesson contains the solution to the exercise in the previous lesson.

Using flex-basis instead of min-width

We only need to make a change in line 8 of the CSS code:

.item {
    flex-basis: 100px; /* Change
...