Flex-shrink Exercise

In this lesson, we will learn how the min-width property affects shrinking, then experiment with width or flex-basis instead of min-width.

flex-shrink and min-width

Consider the following Flex container:

<div class="container">
  <div class="item">Item 1</div>
  <div class="item">Item
...