Windframe
Build Tailwind UIs that actually look good!
.jpg)
The flex-col class arranges flex items in a vertical column, with items stacked from top to bottom by default.
The flex-col class arranges flex items in a vertical column, with items stacked from top to bottom by default.
<div class="flex flex-col justify-center items-center p-5 text-white font-bold bg-green-100 rounded-t-md"> <div class="bg-green-500 p-4 m-2 rounded">Item 1</div> <div class="bg-green-500 p-4 m-2 rounded">Item 2</div> <div class="bg-green-500 p-4 m-2 rounded">Item 3</div></div>Add the flex-col class directly to your HTML element:
<div class="flex-col"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply flex-col at specific breakpoints:
<div class="sm:flex-col md:flex-col lg:flex-col"> Responsive element</div>sm:flex-col — applies from 640px and upmd:flex-col — applies from 768px and uplg:flex-col — applies from 1024px and upYou can extend or override this utility in your tailwind.config.js. See the Tailwind CSS documentation for details on customizing your theme.
Windframe is an AI visual editor for rapidly building stunning web UIs & websites
