Transform
Utilities for controlling transform behaviour.
Class reference
Transform
To enable transformations you have to add the transform
utility.
Hardware acceleration
A lot of transformations can be executed on the GPU instead of the CPU. This enables better performance. You can use the transform-gpu
utility to enable GPU Acceleration.
<div class="transform-gpu scale-150 ..."></div>
None
If you want to disable transformations, then you can use the transform-none
utility.
<div class="transform rotate-45 lg:transform-none ..."></div>
Responsive
To enable or disable transforms at a specific breakpoint, add a {screen}:
prefix to any of the transform utilities. For example, use md:transform
to apply the transform
utility at only medium screen sizes and above.
<img class="transform sm:transform-gpu md:transform-none ...">
For more information about Elements’ responsive design features, check out the Responsive Design documentation.
On this Page
v1.13.5