Back to flexbox Classes

flex-col

Usage

<div class="flex-col">
  <!-- Your content here -->
</div>

Examples

Here are some examples of how to use the flex-col class:

<!-- Basic usage -->
<div class="flex-col">Content</div>

<!-- With other classes -->
<div class="flex-col p-4 bg-white">Content with padding and background</div>