Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Tailwind CSS Transforms Complete Reference

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Tailwind CSS is a highly customizable, low-level CSS framework that gives you all of the buildings blocks that you need. Tailwind CSS Transform utilities are used to control the transform behavior of any element. This class is used to transform the element like rotation, scaling, translating the element.

Below example will give you a brief idea about the Transforms of Tailwind CSS:

Example:

HTML




<!DOCTYPE html>
<html>
<head>
    <link href=
"https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
          rel="stylesheet">
</head>
  
<body class="text-center">
    <h1 class="text-green-600 text-5xl font-bold">
    GeeksforGeeks
    </h1>
    <b>Tailwind CSS Rotate Class</b>
    <div class="bg-green-300
                mx-16
                p-4
                justify-between
                grid grid-flow-col">
    <div class="bg-no-repeat
                w-16 h-16 transform rotate-0"
         style=
        "background-image:url(
    </div>
    <div class="bg-no-repeat
                w-16 h-16 transform rotate-45"
        style=
        "background-image:url(
    </div>
    <div class="bg-no-repeat
                w-16 h-16 transform rotate-90"
        style="background-image:url(
    </div>
    <div class="bg-no-repeat
                w-16 h-16 transform rotate-180"
         style="background-image:url(
    </div>
    </div>
</body>
</html>

Output:

Tailwind CSS Transforms

Tailwind CSS Transforms


My Personal Notes arrow_drop_up
Last Updated : 28 Mar, 2022
Like Article
Save Article
Similar Reads
Related Tutorials