Tailwind CSS on GitHub

Height

Utilities for setting the height of an element

Default class reference

Class
Properties
h-0height: 0px;
h-0.5height: 0.125rem;
h-1height: 0.25rem;
h-1.5height: 0.375rem;
h-2height: 0.5rem;
h-2.5height: 0.625rem;
h-3height: 0.75rem;
h-3.5height: 0.875rem;
h-4height: 1rem;
h-5height: 1.25rem;
h-6height: 1.5rem;
h-7height: 1.75rem;
h-8height: 2rem;
h-9height: 2.25rem;
h-10height: 2.5rem;
h-11height: 2.75rem;
h-12height: 3rem;
h-14height: 3.5rem;
h-16height: 4rem;
h-20height: 5rem;
h-24height: 6rem;
h-28height: 7rem;
h-32height: 8rem;
h-36height: 9rem;
h-40height: 10rem;
h-44height: 11rem;
h-48height: 12rem;
h-52height: 13rem;
h-56height: 14rem;
h-60height: 15rem;
h-64height: 16rem;
h-72height: 18rem;
h-80height: 20rem;
h-96height: 24rem;
h-autoheight: auto;
h-pxheight: 1px;
h-1/2height: 50%;
h-1/3height: 33.333333%;
h-2/3height: 66.666667%;
h-1/4height: 25%;
h-2/4height: 50%;
h-3/4height: 75%;
h-1/5height: 20%;
h-2/5height: 40%;
h-3/5height: 60%;
h-4/5height: 80%;
h-1/6height: 16.666667%;
h-2/6height: 33.333333%;
h-3/6height: 50%;
h-4/6height: 66.666667%;
h-5/6height: 83.333333%;
h-fullheight: 100%;
h-screenheight: 100vh;

Auto

Use h-auto to let the browser determine the height for the element.

h-auto
<div class="h-auto ...">h-auto</div>

Screen height

Use h-screen to make an element span the entire height of the viewport.

h-screen
<div class="h-screen p-6 ...">h-screen</div>

Fixed height

Use h-{number} or h-px to set an element to a fixed height.

h-8

h-12

h-16

h-24

<div>
    <div class="h-8 ..."></div>
    <div class="h-12 ..."></div>
    <div class="h-16 ..."></div>
    <div class="h-24 ..."></div>
</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.

h-full
<div class="h-48">
  <div class="h-full ...">h-full</div>
</div>

Responsive

To control the height of an element at a specific breakpoint, add a {screen}: prefix to any existing width utility. For example, adding the class md:h-full to an element would apply the h-full utility at medium screen sizes and above.

<div class="h-8 md:h-full"></div>

For more information about Tailwind's responsive design features, check out the Responsive Design documentation.


Customizing

Height Scale

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 the spacing scale for padding, margin, width, and height all at once in the theme.spacing section of your tailwind.config.js file:

  // tailwind.config.js
  module.exports = {
    theme: {
      spacing: {
+       sm: '8px',
+       md: '16px',
+       lg: '24px',
+       xl: '48px',
      }
    }
  }

To customize height separately, use the theme.height section of your tailwind.config.js file.

  // tailwind.config.js
  module.exports = {
    theme: {
      height: {
+       sm: '8px',
+       md: '16px',
+       lg: '24px',
+       xl: '48px',
      }
    }
  }

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

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

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       height: ['hover', 'focus'],
      }
    }
  }

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

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     height: false,
    }
  }