Windframe
Build Tailwind UIs that actually look good!
.jpg)
The flex-col-reverse class arranges flex items in a vertical column but reverses their order, stacking them from bottom to top.
The flex-col-reverse class arranges flex items in a vertical column but reverses their order, stacking them from bottom to top.
<div class="flex flex-col-reverse justify-center items-center p-5 text-white font-bold bg-teal-100 rounded-t-md"> <div class="bg-teal-500 p-4 m-2 rounded">Item 1</div> <div class="bg-teal-500 p-4 m-2 rounded">Item 2</div> <div class="bg-teal-500 p-4 m-2 rounded">Item 3</div></div>Add the flex-col-reverse class directly to your HTML element:
<div class="flex-col-reverse"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply flex-col-reverse at specific breakpoints:
<div class="sm:flex-col-reverse md:flex-col-reverse lg:flex-col-reverse"> Responsive element</div>sm:flex-col-reverse — applies from 640px and upmd:flex-col-reverse — applies from 768px and uplg:flex-col-reverse — 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
