Answers for "flex stretch tailwind"

0

tailwind flex

flex w-full flex-wrap mt-4 mb-8 content-center
Posted by: Guest on March-03-2021
0

tailwind flex shrink

<div class="flex ...">
  <div class="flex-grow w-16 h-16 ...">
    <!-- This item will grow or shrink as needed -->
  </div>
  <div class="flex-shrink w-64 h-16 ...">
    <!-- This item will shrink -->
  </div>
  <div class="flex-grow w-16 h-16 ...">
    <!-- This item will grow or shrink as needed -->
  </div>
</div>
Posted by: Guest on June-07-2021

Browse Popular Code Answers by Language