Windframe
Build Tailwind UIs that actually look good!
.jpg)
The h-64 class sets the height of an element to 16rem (256 pixels).
The h-64 class sets the height of an element to 16rem (256 pixels). This is a significant height, often used for main content sections, large images, or full-width banners.
<div class="h-64 bg-indigo-500 text-white text-center">Height: 64</div>Add the h-64 class directly to your HTML element:
<div class="h-64"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply h-64 at specific breakpoints:
<div class="sm:h-64 md:h-64 lg:h-64"> Responsive element</div>sm:h-64 — applies from 640px and upmd:h-64 — applies from 768px and uplg:h-64 — 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
