Problem Statement
Which class sets the Flexbox direction to column?
Explanation
Tailwind uses 'flex-col' to make items align vertically. By default, 'flex' arranges children in a row. Changing it to column stacks them top to bottom.
Code Solution
SolutionRead Only
class='flex flex-col gap-4'
