Tailwind CSS v1.0 is here! Learn more →

Min-Height

Utilities for setting the minimum 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
.min-h-0 min-height: 0;
.min-h-full min-height: 100%;
.min-h-screen min-height: 100vh;

Customizing

Responsive and State Variants

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

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

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

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

Disabling

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

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