Windframe
Build Tailwind UIs that actually look good!
.jpg)
The h-8 class sets the height of an element to 2rem (32 pixels).
The h-8 class sets the height of an element to 2rem (32 pixels). This is useful for defining a small but visible element, such as buttons, navigation links, or small containers.
<div class="h-8 bg-indigo-500 text-white text-center rounded-md font-bold">Height: 8</div>Add the h-8 class directly to your HTML element:
<div class="h-8"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply h-8 at specific breakpoints:
<div class="sm:h-8 md:h-8 lg:h-8"> Responsive element</div>sm:h-8 — applies from 640px and upmd:h-8 — applies from 768px and uplg:h-8 — 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
