Transition Property v1.2.0+
Class reference
Usage
Use the transition-{properties} utilities to specify which properties should transition when they change.
<button class="transition duration-500 ease-in-out bg-blue-500 hover:bg-red-500 transform hover:-translate-y-1 hover:scale-110 ...">
Hover me
</button>
Responsive
To change which properties of an element transition at a specific breakpoint, add a {screen}: prefix to any existing transition-property utility. For example, use md:transition-colors to apply the transition-colors utility at only medium screen sizes and above.
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
Customizing
Property values
By default Tailwind provides transition-property utilities for seven common property combinations. You change, add, or remove these by customizing the transitionProperty section of your Tailwind theme config.
Learn more about customizing the default theme in the theme customization documentation.
Responsive and pseudo-class variants
By default, only responsive variants are generated for transition-property utilities.
You can control which variants are generated for the transition-property utilities by modifying the transitionProperty property in the variants section of your tailwind.config.js file.
For example, this config will also generate hover and focus variants:
Disabling
If you don't plan to use the transition-property utilities in your project, you can disable them entirely by setting the transitionProperty property to false in the corePlugins section of your config file: