Sizing
Height
Utilities for setting the height of an element.
Quick reference
Class | Properties |
---|---|
h-0 | height: 0px; |
h-px | height: 1px; |
h-0.5 | height: 0.125rem; / 2px / |
h-1 | height: 0.25rem; / 4px / |
h-1.5 | height: 0.375rem; / 6px / |
h-2 | height: 0.5rem; / 8px / |
h-2.5 | height: 0.625rem; / 10px / |
h-3 | height: 0.75rem; / 12px / |
h-3.5 | height: 0.875rem; / 14px / |
h-4 | height: 1rem; / 16px / |
h-5 | height: 1.25rem; / 20px / |
h-6 | height: 1.5rem; / 24px / |
h-7 | height: 1.75rem; / 28px / |
h-8 | height: 2rem; / 32px / |
h-9 | height: 2.25rem; / 36px / |
h-10 | height: 2.5rem; / 40px / |
h-11 | height: 2.75rem; / 44px / |
h-12 | height: 3rem; / 48px / |
h-14 | height: 3.5rem; / 56px / |
h-16 | height: 4rem; / 64px / |
h-20 | height: 5rem; / 80px / |
h-24 | height: 6rem; / 96px / |
h-28 | height: 7rem; / 112px / |
h-32 | height: 8rem; / 128px / |
h-36 | height: 9rem; / 144px / |
h-40 | height: 10rem; / 160px / |
h-44 | height: 11rem; / 176px / |
h-48 | height: 12rem; / 192px / |
h-52 | height: 13rem; / 208px / |
h-56 | height: 14rem; / 224px / |
h-60 | height: 15rem; / 240px / |
h-64 | height: 16rem; / 256px / |
h-72 | height: 18rem; / 288px / |
h-80 | height: 20rem; / 320px / |
h-96 | height: 24rem; / 384px / |
h-auto | height: auto; |
h-1/2 | height: 50%; |
h-1/3 | height: 33.333333%; |
h-2/3 | height: 66.666667%; |
h-1/4 | height: 25%; |
h-2/4 | height: 50%; |
h-3/4 | height: 75%; |
h-1/5 | height: 20%; |
h-2/5 | height: 40%; |
h-3/5 | height: 60%; |
h-4/5 | height: 80%; |
h-1/6 | height: 16.666667%; |
h-2/6 | height: 33.333333%; |
h-3/6 | height: 50%; |
h-4/6 | height: 66.666667%; |
h-5/6 | height: 83.333333%; |
h-full | height: 100%; |
h-screen | height: 100vh; |
h-min | height: min-content; |
h-max | height: max-content; |
h-fit | height: fit-content; |
Show all classes
Basic usage
Fixed heights
Use h-{number}
or h-px
to set an element to a fixed height.
<div class="h-96 ...">h-96</div>
<div class="h-80 ...">h-80</div>
<div class="h-64 ...">h-64</div>
<div class="h-48 ...">h-48</div>
<div class="h-40 ...">h-40</div>
<div class="h-32 ...">h-32</div>
<div class="h-24 ...">h-24</div>
Full height
Use h-full
to set an element’s height to 100% of its parent, as long as the parent has a defined height.
<div class="h-48">
<div class="h-full ...">
<!-- This element will have a height of `12rem` (h-48) -->
</div>
</div>
Viewport height
Use h-screen
to make an element span the entire height of the viewport.
<div class="h-screen">
<!-- ... -->
</div>
Applying conditionally
Hover, focus, and other states
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:h-full
to only apply the h-full
utility on hover.
<div class="h-8 hover:h-full">
<!-- ... -->
</div>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
Breakpoints and media queries
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:h-full
to apply the h-full
utility at only medium screen sizes and above.
<div class="h-8 md:h-full">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
Using custom values
Customizing your theme
By default, Tailwind’s height scale is a combination of the default spacing scale as well as some additional values specific to heights.
You can customize your spacing scale by editing theme.spacing
or theme.extend.spacing
in your tailwind.config.js
file.
tailwind.config.js
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
To customize height separately, use the theme.height
section of your tailwind.config.js
file.
tailwind.config.js
module.exports = {
theme: {
extend: {
height: {
'128': '32rem',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
Arbitrary values
If you need to use a one-off height
value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.
<div class="h-[32rem]">
<!-- ... -->
</div>
Learn more about arbitrary value support in the arbitrary values documentation.