Problem Statement
Which Tailwind class makes an element use Flexbox layout?
Explanation
The 'flex' class applies display: flex to an element, enabling Flexbox layout. Once active, you can use other flex utilities to control direction, alignment, and spacing.
Code Solution
SolutionRead Only
class='flex items-center justify-between'
