VOOZH about

URL: https://www.geeksforgeeks.org/css/tailwind-css-transform/

⇱ Tailwind CSS Transform - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Tailwind CSS Transform

Last Updated : 23 Jul, 2025

This class accepts lots of value in tailwind CSS in which all the properties are covered in class form. This class is used to control the transform behavior of any element. In CSS, we can do that by using the CSS transform property.

Transform Classes:

  • transform: To perform any transformation you have to use this class.
  • transform-gpu: By using this class the transformation will be executed on GPU on CPU that will perform in a more soothing way.
  • transform-none: This class is used to deactivate the transformation effect.

Syntax:

<element class="transform-{trans-on}">...</element>

Example:

Output:

👁 Image
Tailwind CSS transform class
Comment