Max-Height

Utilities for setting the maximum 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
.max-h-fullmax-height: 100%;
.max-h-screenmax-height: 100vh;

Customizing

Responsive and pseudo-class variants

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

You can control which variants are generated for the max-height utilities by modifying the maxHeight 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. - maxHeight: ['responsive'],
  6. + maxHeight: ['responsive', 'hover', 'focus'],
  7. }
  8. }

Disabling

If you don’t plan to use the max-height utilities in your project, you can disable them entirely by setting the maxHeight property to false in the corePlugins section of your config file:

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