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

ClassProperties
.min-h-0min-height: 0;
.min-h-fullmin-height: 100%;
.min-h-screenmin-height: 100vh;

Customizing

Responsive and pseudo-class 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 variants section of your tailwind.config.js file.

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

  1. // tailwind.config.js
  2. module.exports = {
  3. variants: {
  4. // ...
  5. - minHeight: ['responsive'],
  6. + minHeight: ['responsive', 'hover', 'focus'],
  7. }
  8. }

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 corePlugins section of your config file:

  1. // tailwind.config.js
  2. module.exports = {
  3. corePlugins: {
  4. // ...
  5. + minHeight: false,
  6. }
  7. }