Explore Library
Tailwind CSSUtility Classes & the Utility-First Workflow

38 items

Code QuizBeginner

Gap Between Children

Find why there is no spacing between flex items.

Codehtml
<div class="flex gap">
  <div>A</div>
  <div>B</div>
</div>

There is no space between the two items. What is the bug?