Tailwind CSS v1.0 is here! Learn more →

Display

Utilities for controlling the display box type 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
.block display: block;
.inline-block display: inline-block;
.inline display: inline;
.table display: table;
.table-row display: table-row;
.table-cell display: table-cell;
.hidden display: none;
.flex display: flex;
.inline-flex display: inline-flex;

Customizing

Responsive and State Variants

By default, only responsive variants are generated for display utilities.

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

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

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

Disabling

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

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