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 font-medium class applies a medium font weight, which is slightly heavier than normal text.
<div class="p-5 font-bold bg-gray-100 rounded-t-md flex flex-col justify-center items-center"> <h3 class="text-gray-500 mr-48">Font-Medium</h3> <p class="font-medium">Pack my box with five dozen liquor jugs.</p></div>Pack my box with five dozen liquor jugs.
Add the Font-medium class directly to your HTML element:
<div class="Font-medium"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply Font-medium at specific breakpoints:
<div class="sm:Font-medium md:Font-medium lg:Font-medium"> Responsive element</div>sm:Font-medium — applies from 640px and upmd:Font-medium — applies from 768px and uplg:Font-medium — 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
