Tailwind CSS v1.0 is here! Learn more →

Resize

Utilities for controlling how an element can be resized.

Work in progress!

More detailed documentation is coming soon, but in the meantime here's a quick class reference.

Class reference

Class Properties
.resize-none resize: none;
.resize resize: both;
.resize-y resize: vertical;
.resize-x resize: horizontal;

Customizing

Responsive and State Variants

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

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

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

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

Disabling

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

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