tailwindcss/docs/source/docs/height.blade.md
Michaël De Boey b0326b8272
height
2017-12-02 18:47:04 +01:00

2.7 KiB

extends title description features
_layouts.documentation Height Utilities for setting the height of an element
responsive customizable hover focus
true true false false

@include('_partials.work-in-progress')

@include('_partials.class-table', [ 'scroll' => false, 'rows' => [ [ '.h-1', 'height: 0.25rem;', "Set the element's height to 0.25rem.", ], [ '.h-2', 'height: 0.5rem;', "Set the element's height to 0.5rem.", ], [ '.h-3', 'height: 0.75rem;', "Set the element's height to 0.75rem.", ], [ '.h-4', 'height: 1rem;', "Set the element's height to 1rem.", ], [ '.h-6', 'height: 1.5rem;', "Set the element's height to 1.5rem.", ], [ '.h-8', 'height: 2rem;', "Set the element's height to 2rem.", ], [ '.h-10', 'height: 2.5rem;', "Set the element's height to 2.5rem.", ], [ '.h-12', 'height: 3rem;', "Set the element's height to 3rem.", ], [ '.h-16', 'height: 4rem;', "Set the element's height to 4rem.", ], [ '.h-24', 'height: 6rem;', "Set the element's height to 6rem.", ], [ '.h-32', 'height: 8rem;', "Set the element's height to 8rem.", ], [ '.h-48', 'height: 12rem;', "Set the element's height to 12rem.", ], [ '.h-64', 'height: 16rem;', "Set the element's height to 16rem.", ], [ '.h-auto', 'height: auto;', "Set the element's height to auto.", ], [ '.h-px', 'height: 1px;', "Set the element's height to 1px.", ], [ '.h-full', 'height: 100%;', "Set the element's height to 100%.", ], [ '.h-screen', 'height: 100vh;', "Set the element's height to 100vh.", ], ] ])

Customizing

Responsive, Hover, and Focus Variants

By default, no hover, focus, or group-hover 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', 'hover', 'focus'],
    }
}

Disabling

If you aren't using 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: false,
    }
}