Tailwind CSS v1.0 is here! Learn more →

Min-Width

Utilities for setting the minimum width 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
.min-w-0 min-width: 0;
.min-w-full min-width: 100%;

Customizing

Responsive and State Variants

By default, only responsive variants are generated for min-width utilities.

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

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

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

Disabling

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

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