Tailwind CSS v1.0 is here! Learn more →

Height

Utilities for setting the height of an element

Work in progress!

More detailed documentation is coming soon, but in the meantime here's a quick class reference.

Class reference

Class Properties
.h-1 height: 0.25rem;
.h-2 height: 0.5rem;
.h-3 height: 0.75rem;
.h-4 height: 1rem;
.h-6 height: 1.5rem;
.h-8 height: 2rem;
.h-10 height: 2.5rem;
.h-12 height: 3rem;
.h-16 height: 4rem;
.h-24 height: 6rem;
.h-32 height: 8rem;
.h-48 height: 12rem;
.h-64 height: 16rem;
.h-auto height: auto;
.h-px height: 1px;
.h-full height: 100%;
.h-screen height: 100vh;

Customizing

Responsive and State Variants

By default, only responsive variants are generated for height utilities.

You can control which variants are generated for the height utilities by modifying the height property in the modules section of your Tailwind config file.

For example, this config will also generate hover and focus variants:

{
// ...
modules: {
    // ...
-   height: ['responsive'],
+   height: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
}
}

Disabling

If you don't plan to use the height utilities in your project, you can disable them entirely by setting the height property to false in the modules section of your config file:

{
// ...
modules: {
    // ...
-   height: ['responsive'],
+   height: false,
}
}