Utilities for controlling the duration of CSS transitions.
<button class="transition duration-150 ease-in-out ...">Hover me</button>
<button class="transition duration-300 ease-in-out ...">Hover me</button>
<button class="transition duration-700 ease-in-out ...">Hover me</button>
To control an element's transition-duration at a specific breakpoint, add a {screen}:
prefix to any existing transition-duration utility. For example, use md:duration-500
to apply the duration-500
utility at only medium screen sizes and above.
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
By default Tailwind provides eight general purpose transition-duration utilities. You change, add, or remove these by customizing the transitionDuration
section of your Tailwind theme config.
// tailwind.config.js
module.exports = {
theme: {
extend: {
transitionDuration: {
+ '0': '0ms',
+ '2000': '2000ms',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
By default, only responsive variants are generated for transition-duration utilities.
You can control which variants are generated for the transition-duration utilities by modifying the transitionDuration
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate hover and focus variants:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ transitionDuration: ['hover', 'focus'],
}
}
}
If you don't plan to use the transition-duration utilities in your project, you can disable them entirely by setting the transitionDuration
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ transitionDuration: false,
}
}