tailwind flex shrink

Solutions on MaxInterview for tailwind flex shrink by the best coders in the world

showing results for - "tailwind flex shrink"
Antonio
12 Feb 2020
1<div class="flex ...">
2  <div class="flex-grow w-16 h-16 ...">
3    <!-- This item will grow or shrink as needed -->
4  </div>
5  <div class="flex-shrink w-64 h-16 ...">
6    <!-- This item will shrink -->
7  </div>
8  <div class="flex-grow w-16 h-16 ...">
9    <!-- This item will grow or shrink as needed -->
10  </div>
11</div>