Windframe
Build Tailwind UIs that actually look good!
.jpg)
The h-full class forces an element to take up 100% of the height of its parent container.
The h-full class forces an element to take up 100% of the height of its parent container. This is useful when creating full-height layouts or aligning child elements to fill their container.
<div class="h-32"> <div class="h-full bg-indigo-500 text-white text-center flex justify-center items-center font-bold rounded-md">Height: full</div> </div>Add the h-full class directly to your HTML element:
<div class="h-full"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply h-full at specific breakpoints:
<div class="sm:h-full md:h-full lg:h-full"> Responsive element</div>sm:h-full — applies from 640px and upmd:h-full — applies from 768px and uplg:h-full — 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
