VOOZH about

URL: https://www.geeksforgeeks.org/css/tailwind-css-transition-delay/

⇱ Tailwind CSS Transition Delay - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Tailwind CSS Transition Delay

Last Updated : 23 Jul, 2025

This class accepts lots of value in tailwind CSS in which all the properties are covered as in class form. The transition delay class is used to specify the length of time (in seconds or milliseconds) to start the transition effect. In CSS, we have done that by using the CSS transition-delay.

Transition Delay classes:

  • delay-75: This class is used to start the transition time of 75ms.
  • delay-100: This class is used to start the transition time of 100ms.
  • delay-150: This class is used to start the transition time of 150ms.
  • delay-200: This class is used to start the transition time of 200ms.
  • delay-300: This class is used to start the transition time of 300ms.
  • delay-500: This class is used to start the transition time of 500ms.
  • delay-700: This class is used to start the transition time of 700ms.
  • delay-1000: This class is used to start the transition time of 1000ms.

Syntax:

<element class="delay-{amount}">...</element>

Example:

Output:

Comment